/* Hero Section mit Slogan */
.hero-slogan {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    overflow: hidden;
    padding: 0 20px;
}

/* Video Hintergrund */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

/* Desktop-spezifische Anpassungen für hochkantiges Video */
@media (min-width: 768px) {
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile-spezifische Anpassungen - Video vollständig sichtbar */
@media (max-width: 767px) {
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Overlay für bessere Lesbarkeit des Textes */
.hero-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(26, 26, 26, 1.0) 0%, 
        rgba(26, 26, 26, 0.6) 30%, 
        rgba(43, 145, 132, 0.4) 70%, 
        rgba(43, 145, 132, 0.6) 100%);
    z-index: 2;
}

/* Hero Content mit Slogan */
.hero-content-slogan {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.slogan-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.slogan-line1 {
    display: block;
    margin-bottom: 10px;
}

.slogan-line1 .highlight {
    color: #2B9184;
}

.slogan-line2 {
    display: block;
}

.slogan-line2 .highlight {
    color: #2B9184;
}

.slogan-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    color: #e2e8f0;
    margin-bottom: 50px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    border: 2px solid white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Computer Setup Section */
.computer-setup {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 3;
}

.setup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.setup-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1e293b;
}

.setup-line1 {
    display: block;
    margin-bottom: 10px;
    color: #1e293b;
}

.setup-line2 {
    display: block;
    color: #2B9184;
}

.setup-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.setup-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.computer-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.computer-img:hover {
    transform: scale(1.02);
}

.features-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 20px 15px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: visible;
    flex: 1;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-icon {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #1e293b;
    stroke-width: 1.5;
}

.feature-item p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* Wer sind wir Section */
.wer-sind-wir {
    padding: 100px 0;
    background: #2d3748;
    position: relative;
    z-index: 3;
}

.wer-sind-wir-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wer-sind-wir-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wer-sind-wir-bild {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wer-sind-wir-bild:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.wer-sind-wir-text {
    color: white;
}

.wer-sind-wir-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2B9184;
}

.wer-sind-wir-paragraph {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.wer-sind-wir-paragraph:last-of-type {
    margin-bottom: 40px;
}

.btn-secondary {
    background: #2B9184;
    color: white;
    border: 2px solid #2B9184;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(43, 145, 132, 0.3);
    transform: scale(1);
}

.btn-secondary:hover {
    background: #1F7A6F;
    border-color: #1F7A6F;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(43, 145, 132, 0.5), 0 0 30px rgba(43, 145, 132, 0.3);
}

/* Leistungen Übersicht */
.leistungen-uebersicht {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 3;
}

.leistungen-uebersicht .section-title {
    position: relative;
}

.leistungen-uebersicht .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2B9184;
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1e293b;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
    grid-auto-rows: 1fr;
    grid-template-rows: repeat(2, 1fr);
}

.leistung-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    height: 100%;
}

.leistung-item-link:hover {
    transform: translateY(-10px);
}

.leistung-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}



.leistung-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.leistung-icon {
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.leistung-bild {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leistung-item:hover .leistung-bild {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.leistung-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.leistung-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.leistungen-cta {
    text-align: center;
}

.leistungen-cta .btn-primary {
    background: #2B9184;
    color: white;
    border: 2px solid #2B9184;
    box-shadow: 0 8px 25px rgba(43, 145, 132, 0.3);
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.leistungen-cta .btn-primary:hover {
    background: #1F7A6F;
    border-color: #1F7A6F;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(43, 145, 132, 0.5), 0 0 30px rgba(43, 145, 132, 0.3);
}

/* Responsive Grid für mobile Geräte */
@media (max-width: 1024px) {
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: stretch;
    }
    
    .leistung-item {
        padding: 30px 20px;
        height: 100%;
        min-height: 350px;
        justify-content: space-between;
    }
    
    .leistung-icon {
        font-size: 2.5rem;
    }
    
    .leistung-item h3 {
        font-size: 1.2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2B9184 0%, #1F7A6F 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 3;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #2B9184;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-section .btn-secondary {
    background: #1F7A6F;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #1F7A6F;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-slogan {
        min-height: 100vh;
        padding: 15px;
    }

    .slogan-title {
        font-size: clamp(1.4rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }

    .slogan-subtitle {
        font-size: clamp(0.75rem, 3vw, 1.1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .setup-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .wer-sind-wir-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .setup-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 20px;
    }

    .wer-sind-wir-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 20px;
    }

    .setup-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .wer-sind-wir-paragraph {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .wer-sind-wir-paragraph:last-of-type {
        margin-bottom: 30px;
    }

    .features-row {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .feature-item {
        padding: 15px 10px;
        gap: 12px;
    }

    .feature-icon img {
        width: 36px;
        height: 36px;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .leistung-item {
        padding: 25px 20px;
        min-height: 320px;
    }

    .leistung-item h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .leistung-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .leistung-bild {
        height: 160px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .computer-setup {
        padding: 70px 0;
    }

    .wer-sind-wir {
        padding: 70px 0;
    }

    .leistungen-uebersicht {
        padding: 70px 0;
    }

    .cta-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        padding: 10px;
    }

    .slogan-title {
        font-size: clamp(1.3rem, 8vw, 2rem);
        margin-bottom: 15px;
    }

    .slogan-subtitle {
        font-size: clamp(0.7rem, 4vw, 1rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }

    .setup-content {
        gap: 25px;
        margin-bottom: 50px;
    }

    .wer-sind-wir-content {
        gap: 25px;
    }

    .setup-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
        margin-bottom: 15px;
    }

    .wer-sind-wir-title {
        font-size: clamp(1.4rem, 6vw, 1.9rem);
        margin-bottom: 15px;
    }

    .setup-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .wer-sind-wir-paragraph {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .wer-sind-wir-paragraph:last-of-type {
        margin-bottom: 25px;
    }

    .features-row {
        gap: 20px;
        margin-top: 25px;
    }

    .feature-item {
        padding: 12px 8px;
        gap: 10px;
    }

    .feature-icon img {
        width: 32px;
        height: 32px;
    }

    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .leistungen-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .leistung-item {
        padding: 20px 15px;
        min-height: 300px;
    }

    .leistung-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .leistung-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .leistung-bild {
        height: 140px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .computer-setup {
        padding: 50px 0;
    }

    .wer-sind-wir {
        padding: 50px 0;
    }

    .leistungen-uebersicht {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* Kunden Section Styles */
.kunden-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

/* Gitter-Hintergrund entfernt */

.kunden-section .container {
    position: relative;
    z-index: 2;
}

.kunden-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    position: relative;
}

.kunden-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2B9184;
    border-radius: 2px;
}

.kunden-slider-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.kunden-slider {
    display: flex;
    gap: 40px;
    animation: slideLogos 60s linear infinite;
    align-items: center;
    width: max-content;
    
}

.kunden-slide {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.kunden-logo-link {
    display: block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.kunden-logo-link:hover {
    transform: scale(1.1);
}

.kunden-logo {
    width: 308px;
    height: 231px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
}

.kunden-logo-link:hover .kunden-logo {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hover Pause Animation */
.kunden-slider:hover {
    animation-play-state: paused;
}

/* Responsive Design für Kunden Slider */
@media (max-width: 768px) {
    .kunden-section {
        padding: 50px 0;
    }
    
    .kunden-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .kunden-slider {
        gap: 20px;
        animation-duration: 45s;
    }
    
    .kunden-logo {
        width: 240px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .kunden-section {
        padding: 30px 0;
    }
    
    .kunden-section .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .kunden-slider {
        gap: 15px;
        animation-duration: 40s;
    }
    
    .kunden-logo {
        width: 200px;
        height: 150px;
    }
}


/* Responsive Design für Features */
@media (max-width: 768px) {
    .features-row {
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }
    
    .feature-item {
        flex: none;
        width: 100%;
        max-width: 280px;
    }
    
    .feature-icon img {
        width: 36px;
        height: 36px;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .features-row {
        gap: 20px;
        margin-top: 25px;
    }
    
    .feature-item {
        padding: 12px 8px;
        max-width: 260px;
    }
    
    .feature-icon img {
        width: 32px;
        height: 32px;
    }
    
    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/* Aktuelle Projekte Section */
.aktuelle-projekte-section {
    padding: 80px 0;
    background: #2d3748;
    position: relative;
    z-index: 3;
}

.aktuelle-projekte-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.aktuelle-projekte-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2B9184;
    border-radius: 2px;
}

.projekte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.projekt-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.projekt-item:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.projekt-bild {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.projekt-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.projekt-titel {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.projekt-beschreibung {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.projekt-mehr-erfahren {
    display: inline-block;
    background: linear-gradient(135deg, #2B9184, #2B9184);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    align-self: flex-start;
    width: fit-content;
}

.projekt-mehr-erfahren:hover {
    background: white;
    color: #2B9184;
    border-color: #2B9184;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 145, 132, 0.3);
}

/* Projekt Popup Modal */
.projekt-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.projekt-modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 0;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.projekt-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    z-index: 1001;
    background: rgba(43, 145, 132, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.projekt-modal-close:hover {
    background: rgba(43, 145, 132, 1);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 25px rgba(43, 145, 132, 0.4);
}

.projekt-modal-close:active {
    transform: scale(0.95) rotate(90deg);
    transition: all 0.1s ease;
}

/* Projekt Bild Container */
.projekt-bild-container {
    width: 100%;
    height: 400px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.projekt-bild-container img,
.projekt-bild-container video,
.projekt-bild-container iframe {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projekt-bild-container iframe {
    object-fit: initial;
    border: none;
}

/* Projekt Details */
.projekt-details {
    padding: 30px;
    max-height: calc(90vh - 300px);
    overflow-y: auto;
}

.projekt-modal-titel {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.projekt-modal-kategorie {
    display: inline-block;
    color: #2B9184;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.projekt-modal-kategorie:hover {
    color: #1F7A6F;
}

.projekt-modal-beschreibung {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
}



.projekt-link {
    display: inline-block;
    background: linear-gradient(135deg, #2B9184, #2B9184);
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.projekt-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(43, 145, 132, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aktuelle-projekte-section {
        padding: 60px 0;
    }
    
    .aktuelle-projekte-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .projekte-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 40px;
    }
    
    .projekt-item {
        margin: 0 10px;
    }
    
    .projekt-info {
        padding: 20px;
    }
    
    .projekt-titel {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .projekt-beschreibung {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .projekt-mehr-erfahren {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .projekt-modal-content {
        width: 98%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .projekt-details {
        padding: 18px;
        max-height: calc(95vh - 350px);
    }
    
    .projekt-modal-titel {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .projekt-bild-container {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .aktuelle-projekte-section {
        padding: 40px 0;
    }
    
    .aktuelle-projekte-section .section-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    
    .projekte-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .projekt-item {
        margin: 0 8px;
    }
    
    .projekt-info {
        padding: 15px;
    }
    
    .projekt-titel {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .projekt-beschreibung {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .projekt-mehr-erfahren {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .projekt-modal-content {
        margin: 8% auto;
        max-height: 98vh;
    }
    
    .projekt-details {
        padding: 12px;
        max-height: calc(98vh - 280px);
    }
    
    .projekt-modal-titel {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .projekt-bild-container {
        height: 280px;
    }
}

/* Kundenbewertungen Section */
.kundenbewertungen-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 3;
}

.kundenbewertungen-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    position: relative;
}

.kundenbewertungen-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2B9184;
    border-radius: 2px;
}

.bewertungen-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.bewertungen-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    height: 400px; /* Feste Höhe */
}

.bewertungen-track {
    display: flex;
    transition: transform 1.0s ease-in-out;
    height: 100%;
}

.bewertung-slide {
    flex: 0 0 50%; /* Jede Slide nimmt 50% der Breite ein */
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bewertung-karte {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
    width: 100%;
    height: 320px; /* Feste Höhe für alle Karten */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bewertung-sterne {
    display: flex;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.bewertung-kunde {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    text-align: left;
}

.bewertung-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2B9184, #1F7A6F);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(43, 145, 132, 0.3);
    flex-shrink: 0;
}

.kunde-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stern {
    color: #ffa500;
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bewertung-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Gänsefüßchen entfernt */

.kunde-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2B9184;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kunde-firma {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0.3px;
}

.bewertungen-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    border: 2px solid #2B9184;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pagination-dot.active {
    background: #2B9184;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(43, 145, 132, 0.3);
}

.pagination-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(43, 145, 132, 0.2);
}

.pagination-dot.mobile-only {
    display: none;
}

/* Responsive Design für Kundenbewertungen */
@media (max-width: 768px) {
    .kundenbewertungen-section {
        padding: 60px 0;
    }
    
    .kundenbewertungen-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .bewertungen-slider {
        height: 350px;
    }
    
    .bewertung-slide {
        flex: 0 0 100%; /* Auf mobilen Geräten eine Bewertung pro Slide */
    }
    
    .bewertung-karte {
        padding: 25px 20px;
        height: 300px;
    }
    
    .bewertung-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Gänsefüßchen entfernt */
    
    .stern {
        font-size: 1.3rem;
    }
    
    .bewertung-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .bewertung-kunde {
        gap: 12px;
    }
    
    .kunde-name {
        font-size: 0.85rem;
    }
    
    .kunde-firma {
        font-size: 0.75rem;
    }
    
    .pagination-dot.mobile-only {
        display: block;
    }
}

@media (max-width: 480px) {
    .kundenbewertungen-section {
        padding: 50px 0;
    }
    
    .kundenbewertungen-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .bewertungen-slider {
        height: 320px;
    }
    
    .bewertung-karte {
        padding: 20px 15px;
        height: 280px;
    }
    
    .bewertung-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Gänsefüßchen entfernt */
    
    .stern {
        font-size: 1.2rem;
    }
    
    .bewertung-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .bewertung-kunde {
        gap: 10px;
    }
    
    .kunde-name {
        font-size: 0.8rem;
    }
    
    .kunde-firma {
        font-size: 0.7rem;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
    }
}


