/*
Theme Name: KÖTERMUKKE DJ & EVENTS
Theme URI: https://www.koetermukke.com/
Author: Daniel Schalk
Author URI: https://www.koetermukke.com/
Description: Professioneller DJ-Service in Linz: Techhouse & Techno Events, Equipment-Verleih & DJ-Workshops.
Version: 1.0.0
License: GPL v2 or later
Text Domain: koetermukke
*/

/* Grundlegende Styles werden über Tailwind und Custom CSS geladen */

    /* Custom Clean CSS Styles */
    :root {
        --brand-dark: '#050508';
        --brand-surface: '#0f111a';
        --neon-purple: #bc13fe;
        --neon-pink: #ff00f7;
        --neon-yellow: #f7ff00;
        --neon-green: #39ff14;
        --neon-cyan: #00f7ff;
    }

    body {
        background-color: #050508;
        color: #e2e8f0;
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-display {
        font-family: 'Exo 2', sans-serif;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 4px;
    }

    ::-webkit-scrollbar-track {
        background: #0f111a;
    }

    ::-webkit-scrollbar-thumb {
        background: #334155;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--neon-cyan);
    }

    /* Glassmorphism Classes */
    .glass-panel {
        background: rgba(20, 20, 30, 0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .glass-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        transition: all 0.4s ease;
    }

    .glass-card:hover {
        border-color: rgba(0, 247, 255, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 10px 40px -10px rgba(0, 247, 255, 0.15);
    }

    /* Text Effects */
    .text-glow {
        text-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
    }

    .gradient-text {
        background: linear-gradient(to right, var(--neon-cyan), var(--neon-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Service Image Hover */
    .service-img-wrap {
        overflow: hidden;
    }

    .service-img-wrap img {
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .group:hover .service-img-wrap img {
        transform: scale(1.1);
    }

    /* Custom Slider CSS */
    .header-slider {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.8s ease-in-out;
    }

    .slide.active {
        opacity: 1;
        transition: opacity 5s;
    }

    /* Animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Custom Input */
    .input-clean {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .input-clean:focus {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--neon-cyan);
        outline: none;
        box-shadow: 0 0 0 1px rgba(0, 247, 255, 0.2);
    }

    /* Nav Active State */
    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--neon-cyan);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Slider Styling für Cookie Toggles */
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: #00f7ff;
    }

    input:checked + .slider:before {
        transform: translateX(26px);
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.875rem;
        color: #94a3b8;
    }

    .breadcrumb a:hover {
        color: #00f7ff;
    }

    /* Partner Section Styling */
    .partner-item-minimal {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .partner-item-minimal:hover {
        transform: translateY(-5px);
    }

    .partner-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
    }

    .partner-icon svg {
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .partner-item-minimal:hover .partner-icon svg {
        color: var(--neon-green);
    }

    .partner-name-minimal {
        font-family: 'Exo 2', sans-serif;
        font-weight: 700;
        font-size: 0.875rem;
        text-align: center;
        color: #ffffff;
    }

    /* Timeline Styling */
    .timeline-item {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, transparent, #00f7ff, transparent);
    }

    .timeline-dot {
        position: absolute;
        left: -6px;
        top: 0;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #00f7ff;
        box-shadow: 0 0 10px #00f7ff;
    }

    /* Philosophy Grid */
    .philosophy-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .philosophy-card {
        background: rgba(30, 30, 40, 0.6);
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }

    .philosophy-card:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 247, 255, 0.3);
        box-shadow: 0 10px 30px rgba(0, 247, 255, 0.1);
    }

    .philosophy-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #00f7ff, #0066ff);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        color: #000;
        font-size: 1.5rem;
    }

    /* Testimonial Styling */
 

    /* Gig Cards with shimmering ice-blue to violet glass effect */
    .gig-card-pop {
        background: linear-gradient(145deg, 
            rgba(0, 247, 255, 0.2) 0%, 
            rgba(188, 19, 254, 0.25) 50%,
            rgba(255, 0, 247, 0.15) 100%);
        backdrop-filter: blur(12px);
        border-radius: 16px;
        padding: 1.75rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.4),
            0 0 30px rgba(0, 247, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    .gig-card-pop::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%
        );
        transform: rotate(30deg);
        transition: transform 0.8s ease;
        z-index: 0;
    }

    .gig-card-pop:hover::before {
        transform: rotate(30deg) translate(20%, 20%);
    }

    .gig-card-pop > * {
        position: relative;
        z-index: 1;
    }

    .gig-card-pop:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(188, 19, 254, 0.3),
            0 0 60px rgba(0, 247, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .gig-card-pop .date-box {
        background: linear-gradient(135deg, rgba(0, 247, 255, 0.2), rgba(188, 19, 254, 0.2));
        border-radius: 12px;
        padding: 0.75rem;
        min-width: 70px;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .gig-card-pop .event-title {
        background: linear-gradient(90deg, #ffffff, #00f7ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(0, 247, 255, 0.3);
        font-weight: 800;
        letter-spacing: -0.5px;
    }

    .gig-card-pop .status-badge {
        background: linear-gradient(90deg, #00f7ff, #bc13fe);
        color: #000;
        font-weight: 800;
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(0, 247, 255, 0.3);
    }

    .gig-card-pop .highlight-badge {
        background: linear-gradient(90deg, #f7ff00, #39ff14);
        color: #000;
        font-weight: 800;
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(247, 255, 0, 0.4);
        animation: pulse-glow 2s infinite;
    }

    @keyframes pulse-glow {
        0%, 100% {
            box-shadow: 0 4px 15px rgba(247, 255, 0, 0.4);
        }
        50% {
            box-shadow: 0 4px 20px rgba(247, 255, 0, 0.7), 0 0 30px rgba(247, 255, 0, 0.3);
        }
    }

    /* Header height increase */
    .header-increased {
        padding-top: 1.1rem;
        padding-bottom: 1.1rem;
    }

    /* Logo size increase */
    .logo-large {
        width: 5rem;
        height: 5rem;
    }

    /* Gig Section mit Hintergrund */
    .gigs {
        position: relative;
        padding: 4rem 2rem;
        z-index: -1;
    }

    /* Allgemeine Stile */
    .cta-button {
        display: inline-block;
        background-color: var(--neon-cyan);
        color: var(--pink--black);
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: var(--neon-pink);
        transform: translateY(-3px);
    }

    /* Testimonial Section Styles */
    .testimonial-section {
        padding: 2rem 5%;
        background: rgba(20, 20, 30, 0.4);
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-top: 2rem;
        border-radius: 1rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
    }

    /* Testimonial Container als Flexbox */
    .testimonial-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Animation for cards */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .testimonial-content {
        animation: fadeIn 0.6s ease-out;
    }

    .testimonial-content:nth-child(2) {
        animation-delay: 0.2s;
    }

    /* Neonpurple Glow für Audio Player */
    .audio-playing-glow {
        border-color: #9900ff !important;
        box-shadow: 
            0 0 30px rgba(110, 18, 212, 0.7),
            0 0 60px rgba(110, 18, 212, 0.4),
            0 0 100px rgba(110, 18, 212, 0.2),
            inset 0 0 20px rgba(110, 18, 212, 0.3) !important;
        animation: pulse-orange 2s infinite;
    }

    @keyframes pulse-orange {
        0%, 100% {
            box-shadow: 
                0 0 30px rgba(110, 18, 212, 0.7),
                0 0 60px rgba(110, 18, 212, 0.4),
                0 0 100px rgba(110, 18, 212, 0.2),
                inset 0 0 20px rgba(110, 18, 212, 0.3);
        }
        50% {
            box-shadow: 
                0 0 40px rgba(110, 18, 212, 0.9),
                0 0 80px rgba(110, 18, 212, 0.6),
                0 0 120px rgba(110, 18, 212, 0.3),
                inset 0 0 30px rgba(110, 18, 212, 0.4);
        }
    }

    /* Audio Player Icon Pulsieren */
    .glow-panel.playing .fa-play,
    .glow-panel.playing .fa-pause {
        animation: icon-pulse 1.5s infinite alternate;
        color: var(--neon-purple) !important;
    }

    @keyframes icon-pulse {
        0% {
            text-shadow: 0 0 5px rgba(188, 19, 254, 0.5);
            transform: scale(1);
        }
        100% {
            text-shadow: 0 0 20px rgba(188, 19, 254, 0.8);
            transform: scale(1.1);
        }
    }

    /* News Section Image Styles */
    .news-image-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    /* Partner Section - Angepasst */
    .partners-section-minimal {
        padding: 2.5rem 5%;
        background: rgba(10, 10, 10, 0.9);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .partners-title-minimal {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 300;
    }

    .partners-grid-minimal {
        display: flex;
        overflow-x: auto;
        gap: 2rem;
        padding: 1rem 0;
        scrollbar-width: thin;
        scrollbar-color: var(--neon-cyan) transparent;
    }

    .partners-grid-minimal::-webkit-scrollbar {
        height: 8px;
    }

    .partners-grid-minimal::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .partners-grid-minimal::-webkit-scrollbar-thumb {
        background: var(--neon-cyan);
        border-radius: 4px;
    }

    .partner-item-minimal {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
        min-width: 120px;
        transition: all 0.3s ease;
        padding: 15px 10px;
        border-radius: 8px;
    }

    .partner-item-minimal:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-5px);
    }

    .partner-icon {
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .partner-item-minimal:hover .partner-icon {
        color: var(--neon-green);
        transform: scale(1.2);
    }

    .partner-name-minimal {
        font-size: 0.85rem;
        color: #ffffff;
        text-align: center;
        font-weight: 300;
        letter-spacing: 1px;
    }
/* Engerer Hero-Text */
header .relative.z-20 {
    max-width: 40rem !important; /* Anpassen: 40rem, 32rem, 28rem etc. */
}

header h1 {
    font-size: 3.5rem !important;
    line-height: 1 !important;
    margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
    header h1 {
        font-size: 5rem !important;
    }
}

header .font-light.text-lg {
    max-width: 28rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
    /* Social Proof Section - Prominent positioniert */
            .social-proof-prominent {
              background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(188, 19, 254, 0.1));
              border: 1px solid rgba(0, 247, 255, 0.2);
              border-radius: 20px;
              padding: 2rem;
              margin: 2rem 0;
            }

            .rating-badge-large {
              display: inline-flex;
              align-items: center;
              background: rgba(0, 0, 0, 0.4);
              padding: 12px 24px;
              border-radius: 30px;
              border: 1px solid rgba(0, 247, 255, 0.3);
              font-size: 1.1rem;
            }

            .rating-badge-large .stars {
              margin-right: 15px;
              margin-bottom: 0;
            }

            .rating-badge-large span {
              font-weight: bold;
              color: var(--neon-cyan);
              font-size: 1.2rem;
            }

            /* Visuelle Hierarchie für CTAs */
            .cta-primary {
              background: linear-gradient(135deg, #00f7ff, #0066ff);
              color: #000;
              font-weight: 800;
              padding: 1rem 2rem;
              border-radius: 8px;
              transition: all 0.3s ease;
              box-shadow: 0 4px 20px rgba(0, 247, 255, 0.4);
            }

            .cta-primary:hover {
              transform: translateY(-3px);
              box-shadow: 0 6px 30px rgba(0, 247, 255, 0.6);
            }

            .cta-secondary {
              background: transparent;
              color: #ffffff;
              border: 2px solid rgba(255, 255, 255, 0.3);
              padding: 1rem 2rem;
              border-radius: 8px;
              transition: all 0.3s ease;
            }

            .cta-secondary:hover {
              background: rgba(255, 255, 255, 0.1);
              border-color: rgba(255, 255, 255, 0.5);
            }

            /* Optimierte Weißraum */
            .section-spacing {
              padding-top: 4rem;
              padding-bottom: 4rem;
            }

            @media (max-width: 768px) {
              .section-spacing {
                padding-top: 3rem;
                padding-bottom: 3rem;
              }
            }

            /* Lazy Loading Stil */
            .lazy-load {
              opacity: 0;
              transition: opacity 0.3s ease;
            }

            .lazy-load.loaded {
              opacity: 1;
            }
	
          

    /* reCAPTCHA Anpassungen */
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }

    /* Partner Section Mobile - 3er Gruppen */
    @media (max-width: 768px) {
        .testimonial-card {
            flex: 1 1 100%;
        }
        
        .gig-card-pop {
            padding: 1.25rem;
        }
        
        .gig-card-pop .date-box {
            min-width: 60px;
            padding: 0.5rem;
        }
        
        .gig-card-pop .event-title {
            font-size: 1.1rem;
        }
        
        .philosophy-grid {
            grid-template-columns: 1fr;
        }
        
        .testimonial-section {
            padding: 2rem 5%;
            margin-top: 1rem;
        }

        .testimonial-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-height: none;
        }

        .testimonial-content {
            padding: 1.5rem;
        }

        .testimonial-text {
            font-size: 1rem !important;
            line-height: 1.5;
        }

        .social-proof {
            margin-top: 2rem;
        }
        
        .partners-grid-minimal {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            overflow-x: visible;
            padding: 0;
        }
        
        .partner-item-minimal {
            min-width: auto;
            width: 100%;
            padding: 1rem 0.5rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .partner-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 8px;
        }
        
        .partner-name-minimal {
            font-size: 0.75rem;
            line-height: 1.2;
        }
        
        .g-recaptcha {
            transform: scale(0.85);
        }
        
        .news-image-container {
            flex-direction: row;
        }
        
        .news-image {
            width: 50%;
            height: 4cm;
            object-fit: cover;
            border-radius: 0.5rem;
        }
    }
		/* Zu deinem CSS hinzufügen */
.highlight-badge {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 247, 255, 0.3);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    object-fit: cover;
}

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.6rem;
        }
        
        .gig-card-pop {
            padding: 1rem;
        }
        
        .gig-card-pop .date-box {
            min-width: 55px;
        }
        
        .gig-card-pop .event-title {
            font-size: 1rem;
        }
        
        .partners-grid-minimal {
            gap: 1rem;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .partner-icon {
            width: 45px;
            height: 45px;
        }
        
        .partner-name-minimal {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 360px) {
        .partners-grid-minimal {
            gap: 0.75rem;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .partner-icon {
            width: 40px;
            height: 40px;
        }
        
        .partner-name-minimal {
            font-size: 0.65rem;
            letter-spacing: 0.5px;
        }
    }

    @media (min-width: 768px) {
        .news-image-container {
            flex-direction: row;
        }
        
        .news-image {
            width: 50%;
            height: 4cm;
            object-fit: cover;
            border-radius: 0.5rem;
        }
    }
		


/* Empfohlene Einstellungen für sanfte Übergänge */
.image-container img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover img {
    transform: scale(1.06);
}

.project-image-container img {
    transition: transform 0.5s ease-out;
}

.project-card:hover .project-image-container img {
    transform: scale(1.05);
}

.project-overlay {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Performance Optimierungen */
@media (max-width: 768px) {
    /* Header-Höhe optimieren */
    header {
        min-height: 90vh;
        height: auto;
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    /* Hero-Content zentrieren */
    .relative.z-20 {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Headline auf mobil optimieren */
    h1.font-display {
        font-size: 3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    h1.font-display span {
        font-size: 2.5rem !important;
        margin-top: 0.5rem !important;
    }
    
    /* Untertext auf mobil */
    .font-light.text-lg {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 0.5rem;
    }
    
    /* Buttons auf mobil optimieren */
    .cta-primary, .cta-secondary {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* Social Proof auf mobil kompakter */
    .social-proof-prominent {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }
    
    .social-proof-prominent .text-2xl {
        font-size: 1.5rem !important;
    }
    
    /* Social Media Icons auf mobil */
    .mt-8.flex {
        margin-top: 1.5rem !important;
    }
    
    /* Scroll Indicator */
    .absolute.bottom-10 {
        bottom: 2rem !important;
    }
}

/* Extra kleine Geräte */
@media (max-width: 480px) {
    h1.font-display {
        font-size: 2.4rem !important;
    }
    
    h1.font-display span {
        font-size: 2.0rem !important;
    }
    
    /* Navigation auf sehr kleinen Geräten */
    #navbar .text-lg {
        font-size: 1rem !important;
    }
    
    #navbar .w-12 {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }
}

/* Breitbild Smartphones (landscape) */
@media (max-width: 896px) and (orientation: landscape) {
    header {
        min-height: 100vh;
        padding-top: 4rem;
    }
    
    /* Hero Content kompakter für landscape */
    .relative.z-20 {
        margin-top: 2rem !important;
    }
    
    h1.font-display {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    h1.font-display span {
        font-size: 2rem !important;
        margin-top: 0.25rem !important;
    }
    
    .font-light.text-lg {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Buttons kleiner in landscape */
    .cta-primary, .cta-secondary {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Social Proof verkleinern */
    .social-proof-prominent {
        padding: 0.75rem !important;
        margin: 0.75rem 0 !important;
    }
}

		/* Statt width-Änderungen: */
#progressBar {
    transform-origin: left center;
    will-change: transform; /* Hinweis für Browser */
    transition: transform 0.1s linear; /* Smooth updates */
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 20px;
  }
}

/* Optional: Slider-Version */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: #2980b9;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .slide.active {
        transition: opacity 1s ease-in-out !important;
    }
}

/* Logo stays properly rounded */
.rounded-full {
    border-radius: 50% !important;
}

	    /* Social Proof Section - Prominent positioniert */
            .social-proof-prominent {
              background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(188, 19, 254, 0.1));
              border: 1px solid rgba(0, 247, 255, 0.2);
              border-radius: 20px;
              padding: 2rem;
              margin: 2rem 0;
            }

            .rating-badge-large {
              display: inline-flex;
              align-items: center;
              background: rgba(0, 0, 0, 0.4);
              padding: 12px 24px;
              border-radius: 30px;
              border: 1px solid rgba(0, 247, 255, 0.3);
              font-size: 1.1rem;
            }

            .rating-badge-large .stars {
              margin-right: 15px;
              margin-bottom: 0;
            }

            .rating-badge-large span {
              font-weight: bold;
              color: var(--neon-cyan);
              font-size: 1.2rem;
            }

            /* Visuelle Hierarchie für CTAs */
            .cta-primary {
              background: linear-gradient(135deg, #00f7ff, #0066ff);
              color: #000;
              font-weight: 800;
              padding: 1rem 2rem;
              border-radius: 8px;
              transition: all 0.3s ease;
              box-shadow: 0 4px 20px rgba(0, 247, 255, 0.4);
            }

            .cta-primary:hover {
              transform: translateY(-3px);
              box-shadow: 0 6px 30px rgba(0, 247, 255, 0.6);
            }

            .cta-secondary {
              background: transparent;
              color: #ffffff;
              border: 2px solid rgba(255, 255, 255, 0.3);
              padding: 1rem 2rem;
              border-radius: 8px;
              transition: all 0.3s ease;
            }

            .cta-secondary:hover {
              background: rgba(255, 255, 255, 0.1);
              border-color: rgba(255, 255, 255, 0.5);
            }

            /* Optimierte Weißraum */
            .section-spacing {
              padding-top: 4rem;
              padding-bottom: 4rem;
            }

            @media (max-width: 768px) {
              .section-spacing {
                padding-top: 3rem;
                padding-bottom: 3rem;
              }
            }

            /* Lazy Loading Stil */
            .lazy-load {
              opacity: 0;
              transition: opacity 0.3s ease;
            }

            .lazy-load.loaded {
              opacity: 1;
            }
          

    /* reCAPTCHA Anpassungen */
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }

    /* Partner Section Mobile - 3er Gruppen */
    @media (max-width: 768px) {
        .testimonial-card {
            flex: 1 1 100%;
        }
        
        .gig-card-pop {
            padding: 1.25rem;
        }
        
        .gig-card-pop .date-box {
            min-width: 60px;
            padding: 0.5rem;
        }
        
        .gig-card-pop .event-title {
            font-size: 1.1rem;
        }
        
        .philosophy-grid {
            grid-template-columns: 1fr;
        }
        
        .testimonial-section {
            padding: 2rem 5%;
            margin-top: 1rem;
        }

        .testimonial-container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-height: none;
        }

        .testimonial-content {
            padding: 1.5rem;
        }

        .testimonial-text {
            font-size: 1rem !important;
            line-height: 1.5;
        }

        .social-proof {
            margin-top: 2rem;
        }
        
        .partners-grid-minimal {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            overflow-x: visible;
            padding: 0;
        }
        
        .partner-item-minimal {
            min-width: auto;
            width: 100%;
            padding: 1rem 0.5rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .partner-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 8px;
        }
        
        .partner-name-minimal {
            font-size: 0.75rem;
            line-height: 1.2;
        }
        
        .g-recaptcha {
            transform: scale(0.85);
        }
        
        .news-image-container {
            flex-direction: row;
        }
        
        .news-image {
            width: 50%;
            height: 4cm;
            object-fit: cover;
            border-radius: 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.6rem;
        }
        
        .gig-card-pop {
            padding: 1rem;
        }
        
        .gig-card-pop .date-box {
            min-width: 55px;
        }
        
        .gig-card-pop .event-title {
            font-size: 1rem;
        }
        
        .partners-grid-minimal {
            gap: 1rem;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .partner-icon {
            width: 45px;
            height: 45px;
        }
        
        .partner-name-minimal {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 360px) {
        .partners-grid-minimal {
            gap: 0.75rem;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .partner-icon {
            width: 40px;
            height: 40px;
        }
        
        .partner-name-minimal {
            font-size: 0.65rem;
            letter-spacing: 0.5px;
        }
    }

    @media (min-width: 768px) {
        .news-image-container {
            flex-direction: row;
        }
        
        .news-image {
            width: 50%;
            height: 4cm;
            object-fit: cover;
            border-radius: 0.5rem;
        }
    }
   
		
		
		/* LOCKERE HERO-TEXTGESTALTUNG */
.hero-text-relaxed {
  position: relative;
  animation: float-in 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Entspannte Typografie mit mehr Schwung */
.hero-title-chill {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-title-chill::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.5;
  border-radius: 3px;
}

/* Schwungvoller Untertitel */
.hero-subtitle-flow {
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.03em;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  position: relative;
  padding: 1rem 1.5rem;
  background: rgba(0, 247, 255, 0.05);
  border-left: 2px solid var(--neon-cyan);
  border-radius: 0 12px 12px 0;
  backdrop-filter: blur(5px);
  transform-style: preserve-3d;
  perspective: 500px;
}

.hero-subtitle-flow::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 10px;
  font-size: 4rem;
  font-family: serif;
  color: var(--neon-cyan);
  opacity: 0.3;
}

.hero-subtitle-flow::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(15px);
  z-index: -1;
}

/* Fließende CTA-Buttons */
.cta-flow {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  padding: 1.2rem 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  background: linear-gradient(135deg, 
    rgba(0, 247, 255, 0.9) 0%,
    rgba(188, 19, 254, 0.9) 50%,
    rgba(255, 0, 247, 0.9) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-flow:hover {
  transform: 
    translateY(-5px)
    scale(1.05)
    rotate(1deg);
  box-shadow: 
    0 20px 40px rgba(0, 247, 255, 0.4),
    0 0 60px rgba(188, 19, 254, 0.3),
    0 0 100px rgba(255, 0, 247, 0.2);
}

.cta-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.7s ease;
}

.cta-flow:hover::before {
  left: 100%;
}

/* Dekorative Elemente für mehr Schwung */
.hero-deco-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  opacity: 0.3;
  animation: spin-slow 20s linear infinite;
}

.hero-deco-2 {
  position: absolute;
  bottom: 30%;
  right: 10%;
  width: 150px;
  height: 150px;
  border: 3px solid transparent;
  border-top-color: var(--neon-purple);
  border-right-color: var(--neon-purple);
  border-radius: 50%;
  opacity: 0.2;
  animation: spin-reverse 15s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Social Icons mit mehr Schwung */
.social-icons-flow {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
}

.social-icon-flow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.social-icon-flow:hover {
  transform: 
    translateY(-10px)
    scale(1.2)
    rotate(5deg);
  border-color: var(--neon-cyan);
  background: rgba(0, 247, 255, 0.15);
  box-shadow: 
    0 10px 20px rgba(0, 247, 255, 0.3),
    0 0 40px rgba(0, 247, 255, 0.2);
}

.social-icon-flow:nth-child(2):hover {
  border-color: var(--neon-pink);
  background: rgba(255, 0, 247, 0.15);
  box-shadow: 
    0 10px 20px rgba(255, 0, 247, 0.3),
    0 0 40px rgba(255, 0, 247, 0.2);
}

.social-icon-flow:nth-child(3):hover {
  border-color: var(--neon-yellow);
  background: rgba(247, 255, 0, 0.15);
  box-shadow: 
    0 10px 20px rgba(247, 255, 0, 0.3),
    0 0 40px rgba(247, 255, 0, 0.2);
}

.social-icon-flow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.7s ease;
}

.social-icon-flow:hover::before {
  left: 100%;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .hero-title-chill {
    font-size: 3.5rem;
    line-height: 1;
  }
  
  .hero-subtitle-flow {
    padding: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .cta-flow {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .hero-deco-1,
  .hero-deco-2 {
    display: none; /* Auf Mobilgeräten ausblenden für Performance */
  }
}

/* Scroll Indicator mit mehr Persönlichkeit */
.scroll-indicator-personal {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce-soft 2s infinite ease-in-out;
}

@keyframes bounce-soft {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-indicator-personal .mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  position: relative;
  margin-bottom: 10px;
}

.scroll-indicator-personal .mouse::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    top: 10px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

.scroll-indicator-personal .arrow {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  animation: pulse-arrow 2s infinite;
}

@keyframes pulse-arrow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
   /* In bestehendes CSS einfügen */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    /* Touch-friendly Buttons */
    .button, .nav-link {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --bg-color: #050508;
    }
}
	
	/* Footer Styles */
footer {
  background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, #050508 100%);
}

.footer-column h3 {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #00f7ff, #bc13fe);
}

.footer-bottom {
  position: relative;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .footer-column {
    margin-bottom: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1.1rem;
  }
  
  .footer-column h3::after {
    width: 30px;
  }
}

/* Hover-Effekte für Links */
.footer-column a {
  transition: all 0.3s ease;
  position: relative;
}

.footer-column a:hover {
  transform: translateX(5px);
}

/* Legal Links speziell */
.legal-link {
  font-size: 0.9rem;
  color: #9ca3af;
}

.legal-link:hover {
  color: #00f7ff;
}
	
	.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #00f7ff, transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    background: linear-gradient(to right, #FFD700, #00f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(to right, #FFD700, #00f7ff);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 300;
}

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

.testimonial-card {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(20, 20, 20, 0.9) 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 215, 0, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    transition: transform 0.8s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    transform: rotate(30deg) translate(20%, 20%);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 247, 255, 0.3),
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 3px;
}

.quote {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-style: italic;
    position: relative;
    padding-left: 25px;
    font-weight: 300;
}

.quote::before {
    content: "❝";
    font-size: 4rem;
    color: #00f7ff;
    position: absolute;
    left: -15px;
    top: -20px;
    opacity: 0.5;
    font-family: serif;
}

.quote::after {
    content: "❞";
    font-size: 4rem;
    color: #00f7ff;
    position: absolute;
    right: -5px;
    bottom: -40px;
    opacity: 0.5;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #00f7ff;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.author-info h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.author-info p {
    margin: 8px 0 0;
    color: #00f7ff;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .quote {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
}

/* Optional: Slider-Version */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    background: linear-gradient(135deg, #FFD700, #00f7ff);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 247, 255, 0.5);
    background: linear-gradient(135deg, #00f7ff, #FFD700);
}

/* Decorative elements */
.testimonial-deco {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
}

.testimonial-deco-1 {
    top: 10%;
    left: 5%;
}

.testimonial-deco-2 {
    bottom: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

/* Status badge for special testimonials */
.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #00f7ff);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}