:root{--navy-dark:#070A12;--navy-base:#081023;--navy-light:#1e3a5f;--gold-primary:#D6B66A;--gold-dark:#B8923B;--text-white:#FFF;--text-light:rgba(255,255,255,.85);--text-muted:rgba(255,255,255,.6);--border-gold:rgba(214,182,106,.2);--shadow-sm:0 4px 15px rgba(0,0,0,.15);--shadow-md:0 8px 30px rgba(0,0,0,.25);--shadow-lg:0 16px 50px rgba(0,0,0,.35)}

*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:'Inter',sans-serif;background:linear-gradient(135deg,#070A12 0%,#081023 50%,#0a1628 100%);color:var(--text-light);line-height:1.6;overflow-x:hidden}.container{max-width:1200px;margin:0 auto;padding:0 2rem}h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',serif;font-weight:700;color:var(--gold-primary);line-height:1.2;margin-bottom:1rem}h1{font-size:clamp(2.5rem,8vw,4rem)}h2{font-size:clamp(2rem,6vw,3rem);margin-bottom:.5rem}h3{font-size:clamp(1.3rem,3vw,1.8rem)}p{font-size:1rem;color:var(--text-light);margin-bottom:1rem}a{color:var(--gold-primary);text-decoration:none;transition:color .3s ease}a:hover{color:#fff}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(7, 10, 18, 0.95) 0%, rgba(8, 16, 35, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(214, 182, 106, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--gold-primary);
    white-space: nowrap;
}

.logo-dot {
    color: var(--gold-primary);
    margin: 0 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark) !important;
    padding: 0.7rem 1.6rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 182, 106, 0.25);
    color: var(--navy-dark) !important;
}
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 182, 106, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease-in;
    z-index: 1;
}

.hero-video {
    background: #000;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    aspect-ratio: 16 / 9;
}

/* Mobile: show image, hide video */
.hero-mobile-img {
    display: block;
}

.hero-video-container {
    display: none !important;
}

/* Desktop: hide image, show video */
@media (min-width: 769px) {
    .hero-mobile-img {
        display: none;
    }
    
    .hero-video-container {
        display: block !important;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 10, 18, 0.6) 0%, rgba(30, 58, 95, 0.4) 50%, rgba(7, 10, 18, 0.6) 100%);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold-primary);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 182, 106, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-secondary:hover {
    background: rgba(214, 182, 106, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

/* Main Content Area */
main {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #070A12 0%, #081023 50%, #0a1628 100%);
}

/* Sections */
.section {
    padding: 3rem 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent 0%, rgba(214, 182, 106, 0.3) 15%, rgba(214, 182, 106, 0.8) 50%, rgba(214, 182, 106, 0.3) 85%, transparent 100%) 1;
    box-shadow: inset 0 2px 8px rgba(214, 182, 106, 0.15), inset 0 -1px 3px rgba(214, 182, 106, 0.05);
}

.section-compact {
    padding: 2.5rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    margin-top: 1rem;
    font-weight: 300;
}

/* USP Grid */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.usp-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.usp-card:nth-child(2) { animation-delay: 0.1s; }
.usp-card:nth-child(3) { animation-delay: 0.2s; }
.usp-card:nth-child(4) { animation-delay: 0.3s; }
.usp-card:nth-child(5) { animation-delay: 0.4s; }
.usp-card:nth-child(6) { animation-delay: 0.5s; }

.usp-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(214, 182, 106, 0.15);
}

.usp-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usp-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.25), rgba(15, 23, 42, 0.25));
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--gold-primary);
    transition: all 0.4s ease;
    animation: slideUp 0.8s ease-out both;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(214, 182, 106, 0.1);
}

.timeline-marker {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--navy-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
}

/* Vocalists */
.vocalists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vocalist-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.25), rgba(15, 23, 42, 0.25));
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.vocalist-card:nth-child(2) { animation-delay: 0.1s; }
.vocalist-card:nth-child(3) { animation-delay: 0.2s; }

.vocalist-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vocalist-card:hover img {
    transform: scale(1.05);
}

.vocalist-card h3,
.vocalist-card p {
    padding: 0 1.5rem;
}

.vocalist-card h3 {
    color: var(--gold-primary);
    margin-top: 1.5rem;
}

.vocalist-card p {
    color: var(--text-light);
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

.vocalist-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(214, 182, 106, 0.2);
}

/* Dance Section */
.section-dance .container {
    margin-top: 3rem;
}

.dance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dance-text h2 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.dance-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dance-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-light);
    position: relative;
    border-bottom: 1px solid rgba(214, 182, 106, 0.1);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Atmosphere Grid */
.atmosphere-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.atmosphere-card {
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.atmosphere-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.atmosphere-card:hover img {
    transform: scale(1.08);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pricing-features {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.15));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.pricing-features h3 {
    margin: 0 0 2rem 0;
    padding-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(214, 182, 106, 0.3);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0.75rem 0;
    background: transparent;
    border-left: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(214, 182, 106, 0.15);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    background: transparent;
    transform: translateX(4px);
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-list strong {
    color: var(--gold-primary);
}

.pricing-price-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.4), rgba(15, 23, 42, 0.4));
    backdrop-filter: blur(15px);
    border: 2px solid var(--gold-primary);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark), var(--gold-primary));
}

.price-card-header {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.price-amount {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.price-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.price-benefits li {
    padding: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(214, 182, 106, 0.1);
}

.price-benefits li:last-child {
    border-bottom: none;
}

.price-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 0.08em;
}

.pricing-box {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 3.5rem;
    border-radius: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-box h2 {
    margin-bottom: 1rem;
}

.pricing-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price-display {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--gold-primary);
    margin: 1rem 0;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Benefit Cards Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.25), rgba(15, 23, 42, 0.25));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(214, 182, 106, 0.2);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s infinite;
}

.benefit-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Act Badges */
.act-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(214, 182, 106, 0.3);
}

/* Show Total Block */
.show-total-block {
    background: linear-gradient(135deg, rgba(214, 182, 106, 0.15), rgba(214, 182, 106, 0.08));
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-primary);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.show-total-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.total-marker {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--navy-dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.show-total-block h3 {
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.show-total-block p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* FAQ */
.faq-preview {
    max-width: 700px;
    margin: 3rem auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15), rgba(15, 23, 42, 0.15));
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    cursor: pointer;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item summary:hover {
    background: rgba(214, 182, 106, 0.05);
}

.faq-item summary span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.faq-toggle {
    color: var(--gold-primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-toggle {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-light);
    border-top: 1px solid rgba(214, 182, 106, 0.1);
    margin: 0;
}

/* CTA Final */
.section-cta-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.2));
}

.section-cta-final h2 {
    margin-bottom: 1rem;
}

.section-cta-final p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #070A12 0%, #081023 100%);
    border-top: 1px solid rgba(214, 182, 106, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.footer-tagline {
    color: var(--gold-primary);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(214, 182, 106, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Subpage Hero */
.hero-subpage {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-subpage h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-subpage p {
    font-size: 1.3rem;
    color: var(--text-muted);
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.two-col h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.concept-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.concept-block {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.2));
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-gold);
    transition: all 0.4s ease;
}

.concept-block:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(214, 182, 106, 0.1);
}

.concept-block h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.media-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.2));
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.media-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid var(--border-gold);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(30, 58, 95, 0.5);
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(214, 182, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-container {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
}

.honeypot {
    display: none;
}

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

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

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Fade-in on scroll - default visible state */
.fade-in-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Content Blocks with visual styling */
.content-block {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: start;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.15), rgba(15, 23, 42, 0.15));
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-gold);
    margin-top: 2rem;
}

.content-block-left {
    direction: ltr;
}

.content-block-left .content-block-image {
    order: -1;
}

.content-block-right .content-block-image {
    order: 1;
}

.content-block-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(214, 182, 106, 0.2);
    position: relative;
}

.content-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.content-block-image img:hover {
    transform: scale(1.05);
}

.content-block-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.content-block-text p:last-child {
    margin-bottom: 0;
}

/* Timeline/Show Structure */
.show-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.timeline-block {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(15, 23, 42, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    border-left: 4px solid var(--gold-primary);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 182, 106, 0.15);
    border-left-color: #fff;
}

.timeline-marker {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--navy-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.timeline-image {
    border-radius: 0.8rem;
    overflow: hidden;
    margin-top: 1.5rem;
}

.timeline-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.timeline-block:hover .timeline-image img {
    transform: scale(1.08);
}

.timeline-block-total {
    background: linear-gradient(135deg, rgba(214, 182, 106, 0.1), rgba(214, 182, 106, 0.05));
    border-left-color: var(--gold-primary);
}

.timeline-block-total .timeline-marker {
    background: linear-gradient(135deg, rgba(214, 182, 106, 0.3), rgba(214, 182, 106, 0.2));
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(7, 10, 18, 0.98);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(214, 182, 106, 0.2);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        will-change: max-height;
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 500px !important;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(214, 182, 106, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .dance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .usp-grid,
    .vocalists-grid,
    .atmosphere-grid {
        grid-template-columns: 1fr;
    }

    .pricing-box {
        padding: 2rem;
    }

    .price-display {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-price-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .feature-list {
        gap: 1rem;
    }

    .feature-list li {
        padding: 0.75rem;
        gap: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

    /* Mobile: verwijder borders en reduce padding voor luchtigere look - ALLEEN voor specifieke secties */
    #testimonials .testimonial-card,
    .usp-card,
    .content-block {
        border: none !important;
        background: transparent !important;
        padding: 1.5rem 0.5rem !important;
        box-shadow: none !important;
    }

    /* Behoud de normale styling voor why-card en show-act-card grids */
    .why-choose-grid,
    .show-acts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    #testimonials .testimonial-card p {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Behoud alleen subtiele scheiding tussen testimonials */
    #testimonials .testimonial-card:not(:last-child) {
        border-bottom: 1px solid rgba(214, 182, 106, 0.1) !important;
        margin-bottom: 1.5rem !important;
        padding-bottom: 2rem !important;
    }

    /* Show act numbers blijven zichtbaar maar subtiel */
    .show-act-number {
        background: transparent !important;
        border: 1px solid rgba(214, 182, 106, 0.3);
    }

    /* Responsive content blocks */
    .content-block {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .content-block-left .content-block-image,
    .content-block-right .content-block-image {
        order: 0;
    }

    .content-block-image img {
        height: 300px;
    }

    .timeline-block {
        padding: 1.5rem;
    }

    .timeline-image img {
        height: 200px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }
}

/* ========================================
   SHOW ACTS TIMELINE GRID
   ======================================== */

.show-acts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.show-act-card {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 42, 76, 0.6), rgba(30, 58, 95, 0.4));
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.show-act-card:hover {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(40, 68, 105, 0.6));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(214, 182, 106, 0.15);
}

.show-act-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    opacity: 0.3;
    font-weight: 700;
}

.show-act-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.show-act-card h3 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.show-act-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.show-act-points {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.show-act-points li {
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.show-act-points li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

@media (max-width: 968px) {
    .show-acts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .show-acts-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   VERRIJKENDE ACTS GRID
   ======================================== */

.acts-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.act-card {
  grid-column: span 6;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.act-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}

.act-card h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.act-card p {
  margin: 0 0 12px 0;
  opacity: 0.9;
  line-height: 1.5;
  flex-grow: 1;
}

.act-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  font-size: 18px;
}

.act-card:hover {
  transform: translateY(-2px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.acts-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.acts-note {
  opacity: 0.8;
  font-size: 14px;
}

.act-price-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  font-size: 13px;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: auto;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms ease;
}

.act-price-badge:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.premium-banner {
  position: absolute;
  top: 24px;
  left: 18px;
  right: 18px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

/* ========================================
   WHY CHOOSE US GRID
   ======================================== */

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(24, 42, 76, 0.5), rgba(30, 58, 95, 0.3));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.why-card:hover {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.7), rgba(40, 68, 105, 0.5));
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(214, 182, 106, 0.1);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}
  line-height: 1.6;
  opacity: 0.95;
}

.pricing-block {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.price-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-primary);
  font-family: 'Playfair Display', serif;
}

.price-period {
  font-size: 1.1rem;
  opacity: 0.8;
}

.price-includes {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 1rem auto 0;
}

@media (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .price-amount {
    font-size: 2.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   VOCALISTS GRID
   ======================================== */

.vocalists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

.vocalist-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 182, 106, 0.2);
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}

.vocalist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 182, 106, 0.4);
}

.vocalist-card.featured {
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.06);
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-primary);
  color: var(--navy-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.vocalist-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.vocalist-card h3 {
  margin: 12px 0 6px;
  font-size: 16px;
  color: var(--gold-primary);
}

.vocalist-card .subtitle {
  font-size: 13px;
  color: var(--gold-primary);
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 600;
}

.vocalist-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 968px) {
  .vocalists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vocalists-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(24, 42, 76, 0.5), rgba(30, 58, 95, 0.3));
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(214, 182, 106, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-card:hover {
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.7), rgba(40, 68, 105, 0.5));
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(214, 182, 106, 0.15);
}

.quote-mark {
  font-size: 3.5rem;
  color: var(--gold-primary);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-card p:first-of-type {
  font-size: 1rem;
}

.attribution {
  font-size: 0.85rem !important;
  color: var(--gold-primary);
  opacity: 0.7 !important;
  font-weight: 600;
  margin-top: 16px;
}

/* ========================================
   STAR RATING
   ======================================== */
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.star-rating .star {
  font-size: 1.1rem;
  color: var(--gold-primary);
}

/* ========================================
   ENHANCED HOVER EFFECTS & ANIMATIONS
   ======================================== */
.show-act-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.show-act-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(214, 182, 106, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.show-act-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 50px rgba(214, 182, 106, 0.2), inset 0 0 30px rgba(214, 182, 106, 0.05);
}

.show-act-card:hover::before {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(214, 182, 106, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 10;
  font-size: 1.5rem;
}

.show-act-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   VOCALIST CARD ENHANCED
   ======================================== */
.vocalist-card {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.vocalist-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(214, 182, 106, 0.15) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vocalist-card:hover {
  transform: translateY(-12px) rotate(0.5deg);
  border-color: var(--gold-primary);
  box-shadow: 0 24px 60px rgba(214, 182, 106, 0.25), inset 0 0 40px rgba(214, 182, 106, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.vocalist-card:hover::after {
  opacity: 1;
}

/* ========================================
   CONTENT BLOCK ENHANCED (Acts)
   ======================================== */
.content-block {
  transition: all 0.35s ease;
  position: relative;
}

.content-block:hover {
  opacity: 1 !important;
}

.content-block-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.content-block-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(214, 182, 106, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.content-block:hover .content-block-image::after {
  opacity: 1;
}

.content-block:hover .content-block-image img {
  transform: scale(1.05) rotate(0.3deg);
}

.content-block img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   FADE-IN SCROLL ANIMATION
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Already exists but ensuring it's animated */

/* ========================================
   STAT CARD GRID
   ======================================== */
.stat-card {
  background: linear-gradient(135deg, rgba(214, 182, 106, 0.1), rgba(184, 146, 59, 0.05));
  border: 1px solid rgba(214, 182, 106, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 182, 106, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  background: linear-gradient(135deg, rgba(214, 182, 106, 0.15), rgba(184, 146, 59, 0.08));
  box-shadow: 0 16px 40px rgba(214, 182, 106, 0.15);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  font-family: 'Playfair Display', serif;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ========================================
   BEFORE/AFTER SLIDER
   ======================================== */
.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 3rem auto;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid rgba(214, 182, 106, 0.3);
}

.comparison-slider img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   REVIEWS CAROUSEL
   ======================================== */
.carousel-container {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item {
  flex: 0 0 100%;
  background: linear-gradient(135deg, rgba(24, 42, 76, 0.6), rgba(30, 58, 95, 0.4));
  border: 1px solid rgba(214, 182, 106, 0.3);
  padding: 2.5rem;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.carousel-item-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}

.carousel-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item-content {
  flex: 1;
}

.carousel-item-content h3 {
  margin-bottom: 0.5rem;
}

.carousel-item-content .review-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.carousel-item-content .review-author {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.carousel-item-content .review-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: transparent;
  color: var(--gold-primary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--gold-primary);
  color: var(--navy-dark);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(214, 182, 106, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--gold-primary);
  transform: scale(1.2);
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-item {
    flex-direction: column;
    text-align: center;
  }

  .carousel-item-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 640px) {
  .carousel-item {
    padding: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-card .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .act-card {
    grid-column: span 12;
  }
}

/* ========================================
   FORM FEEDBACK & TOASTS
   ======================================== */

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--navy-dark);
  border: 1px solid rgba(214, 182, 106, 0.2);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  z-index: 1000;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 350px;
}

.toast.toast-success {
  border-left: 4px solid #22c55e;
}

.toast.toast-error {
  border-left: 4px solid #ef4444;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Button loading state */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile responsive toast */
@media (max-width: 640px) {
  .toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
    top: auto;
    bottom: 1rem;
  }
}

/* ========================================
   CONTACT BUTTONS - WhatsApp & Click-to-Call
   ======================================== */

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Mobile-only class */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
  }

  /* Adjust WhatsApp button position on mobile with call button visible */
  .whatsapp-float {
    bottom: 100px;
  }
}

/* Utility Classes for Optimized Inline Styles */
.card-gradient{background:linear-gradient(135deg,rgba(24,42,76,.5),rgba(30,58,95,.3));border:1px solid rgba(214,182,106,.2);border-radius:12px;padding:3rem}
.card-gradient-light{background:linear-gradient(135deg,rgba(24,42,76,.4),rgba(30,58,95,.3));border:1px solid rgba(214,182,106,.2);padding:1.5rem;border-radius:10px}
.feature-box{text-align:center;background:linear-gradient(135deg,rgba(24,42,76,.4),rgba(30,58,95,.3));border:1px solid rgba(214,182,106,.2);padding:1.5rem;border-radius:10px}
.hero-section{padding:4rem 2rem;background:linear-gradient(135deg,var(--navy-dark),var(--navy-light))}
.text-center{text-align:center}
.text-gold{color:var(--gold-primary)}
.text-light{color:var(--text-light)}
.text-muted{color:var(--text-muted)}
.font-bold{font-weight:600}
.font-light{font-weight:500}
.mb-1{margin-bottom:1rem}
.mb-2{margin-bottom:2rem}
.mb-3{margin-bottom:3rem}
.mt-2{margin-top:2rem}
.mt-3{margin-top:3rem}
.mt-4{margin-top:4rem}
.px-2{padding:0 2rem}
.py-2{padding:2rem 0}
.py-3{padding:3rem 0}
.gap-2{gap:2rem}
.gap-3{gap:3rem}
.gap-4{gap:4rem}
.grid-2{display:grid;grid-template-columns:1fr 1fr}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr))}
.flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;justify-content:space-between;align-items:center}
.rounded-md{border-radius:8px}
.rounded-lg{border-radius:12px}
.border-gold{border:2px solid var(--gold-primary)}
.border-gold-light{border:1px solid rgba(214,182,106,.2)}
.shadow-card{box-shadow:0 12px 40px rgba(214,182,106,.15)}
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease-in-out,transform .6s ease-in-out}
.img-cover{width:100%;aspect-ratio:1;object-fit:cover}
.img-responsive{width:100%;height:auto}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 85px;
    right: 15px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

