/* ================= VARIABLES ================= */
:root {
    /* — Brand Identity — */
    --primary: #1565c0;
    --primary-dark: #0d47a1;
    --accent: #e3f2fd;
    --gold: #d4af37;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6B7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.04);
    --radius: 20px;
    --font-main: 'Manrope', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* — Tent House Theme (Warm & Elegant Gold) — */
    --tent-primary: #b08a3d;
    --tent-primary-dark: #8c6b2b;
    --tent-accent: #faf6f0;
    --tent-accent-border: rgba(176, 138, 61, 0.12);
    --tent-gradient: linear-gradient(135deg, #FAF6F0 0%, #F5ECE0 100%);
    --tent-icon-bg: #f5edd7;
    --tent-glow: 0 12px 40px rgba(176, 138, 61, 0.06);

    /* — DJ Theme (Soothing Muted Violet & Indigo) — */
    --dj-primary: #6366f1;
    --dj-primary-dark: #4f46e5;
    --dj-accent: #eef2ff;
    --dj-bg-dark: #0a0812;
    --dj-bg-card: rgba(255, 255, 255, 0.03);
    --dj-border: rgba(99, 102, 241, 0.12);
    --dj-gradient: linear-gradient(135deg, #0A0812 0%, #120e24 100%);
    --dj-glow: 0 12px 40px rgba(99, 102, 241, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* GLOBAL RESET */
html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* This stops the double-width issue */
    width: 100%;
    position: relative;
}
body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--white);
    line-height: 1.6;
    transition: opacity 0.15s ease-in-out;
}


/* ================= BACKGROUND ANIMATION ================= */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Stays behind everything */
    overflow: hidden;
    pointer-events: none; /* Allows clicking through it */
}

.bg-animation i {
    position: absolute;
    display: block;
    color: var(--dj-primary);
    opacity: 0.06;
    font-size: 2rem;
    bottom: -100px; /* Start below screen */
    animation: floatUp 15s linear infinite;
}

/* Specific styling for 'Gold' items (Stars/Celebration) */
.bg-animation i.fa-star,
.bg-animation i.fa-champagne-glasses,
.bg-animation i.fa-bolt {
    color: var(--gold);
    opacity: 0.08;
}

/* Keyframes for the floating effect */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.08; /* Fade in */
    }
    90% {
        opacity: 0.08; /* Stay visible */
    }
    100% {
        transform: translateY(-120vh) rotate(360deg) scale(1.2); /* Move up & rotate */
        opacity: 0;
    }
}

/* Positioning & Timing Randomization for natural look */
.bg-animation i:nth-child(1) { left: 10%; width: 80px; animation-duration: 12s; animation-delay: 0s; font-size: 3rem; }
.bg-animation i:nth-child(2) { left: 20%; width: 60px; animation-duration: 18s; animation-delay: 2s; font-size: 2rem; }
.bg-animation i:nth-child(3) { left: 35%; width: 50px; animation-duration: 14s; animation-delay: 5s; font-size: 1.5rem; }
.bg-animation i:nth-child(4) { left: 50%; width: 80px; animation-duration: 20s; animation-delay: 0s; font-size: 4rem; }
.bg-animation i:nth-child(5) { left: 65%; width: 60px; animation-duration: 16s; animation-delay: 3s; font-size: 2.5rem; }
.bg-animation i:nth-child(6) { left: 75%; width: 50px; animation-duration: 13s; animation-delay: 7s; font-size: 2rem; }
.bg-animation i:nth-child(7) { left: 85%; width: 90px; animation-duration: 19s; animation-delay: 4s; font-size: 3rem; }
.bg-animation i:nth-child(8) { left: 95%; width: 50px; animation-duration: 15s; animation-delay: 1s; font-size: 2.5rem; }
.bg-animation i:nth-child(9) { left: 5%; width: 40px; animation-duration: 17s; animation-delay: 6s; font-size: 1.8rem; }
.bg-animation i:nth-child(10) { left: 40%; width: 70px; animation-duration: 22s; animation-delay: 8s; font-size: 3.5rem; }


a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ================= UTILS ================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 10px; font-weight: 800; }
.highlight-text {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ================= SCROLL REVEAL ================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================= TOP BAR & NAVBAR ================= */
.top-bar { background: var(--text-dark); color: rgba(255,255,255,0.8); padding: 8px 0; font-size: 0.85rem; }
.top-bar-content { display: flex; justify-content: center; gap: 20px; }
.separator { opacity: 0.3; }

.navbar {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar.scrolled {
    top: 15px;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar::after {
    display: none;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.15);
}
.logo-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}
.logo-text { font-weight: 800; font-size: 1.3rem; line-height: 1; color: var(--text-dark); }
.logo-text span {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-text small { display: block; font-size: 0.75rem; color: #888; font-weight: 500; margin-top: 2px; }

.nav-links { display: flex; gap: 30px; align-items: center; font-weight: 600; }
.nav-links a:not(.btn-nav):not(.lang-btn) {
    position: relative;
    padding-bottom: 4px;
    color: var(--text-dark);
}
.nav-links a:not(.btn-nav):not(.lang-btn)::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--tent-primary), var(--dj-primary));
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.nav-links a:not(.btn-nav):not(.lang-btn):hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.nav-links a:not(.btn-nav):not(.lang-btn):hover { color: var(--dj-primary); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
    filter: brightness(1.1);
    color: white !important;
    text-decoration: none;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--tent-primary);
    color: var(--tent-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.lang-btn:hover {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white !important;
    border-color: transparent;
    transform: scale(1.05);
    text-decoration: none;
}

.mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; }

/* ================= HERO ================= */
.hero {
    position: relative;
    padding: 100px 0 140px;
    background: linear-gradient(135deg, #FAF6F0 0%, #FAF8F5 50%, #F5F7FA 100%);
    overflow: hidden;
}

/* Softer, more elegant radial accent glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(176, 138, 61, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(0,0,0,0.01) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.8;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text-side {
    max-width: 650px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(176, 138, 61, 0.08);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tent-primary-dark);
    margin-bottom: 24px;
    border: 1px solid rgba(176, 138, 61, 0.15);
}

.badge-pill.light {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
}

.highlight {
    color: var(--tent-primary-dark);
    border-bottom: 3px solid rgba(176, 138, 61, 0.2);
    display: inline;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero-subtext {
    margin-bottom: 40px;
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 15px; margin-bottom: 40px; }
.btn-primary {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
    filter: brightness(1.05);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--tent-primary);
    box-shadow: 0 10px 20px rgba(176, 138, 61, 0.1);
}

.hero-features { display: flex; gap: 20px; font-weight: 700; color: var(--text-body); }
.hero-features i { color: var(--tent-primary); font-size: 1.1rem; }

/* Overlapping Visual Card Stack */
.hero-cards-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 420px;
}

.stack-card {
    position: absolute;
    width: 280px;
    background: white;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-img-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.stack-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 8px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tent-tag {
    background: var(--tent-icon-bg);
    color: var(--tent-primary-dark);
    border: 1px solid rgba(176, 138, 61, 0.1);
}

.dj-tag {
    background: var(--dj-accent);
    color: var(--dj-primary-dark);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

/* Stack Layout Positions */
.card-tent {
    top: 0;
    left: 0;
    z-index: 2;
    border: 1px solid rgba(176, 138, 61, 0.15);
    transform: rotate(-3deg);
}

.card-dj {
    bottom: 0;
    right: 0;
    z-index: 3;
    background: var(--dj-bg-dark);
    border: 1px solid rgba(99, 102, 241, 0.2);
    transform: rotate(3deg);
    box-shadow: var(--dj-glow);
}

.card-dj h3 {
    color: white;
}

/* Overlap Hover Effects */
.hero-card-stack:hover .card-tent {
    transform: translate(-15px, -10px) rotate(-6deg);
    z-index: 4;
}

.hero-card-stack:hover .card-dj {
    transform: translate(15px, 10px) rotate(6deg);
}

.stack-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

/* ================= SERVICE BADGE ================= */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.tent-badge {
    background: var(--tent-icon-bg);
    color: var(--tent-primary);
    border: 1px solid var(--tent-accent-border);
}

.dj-badge {
    background: rgba(124, 58, 237, 0.1);
    color: var(--dj-primary);
    border: 1px solid var(--dj-border);
}

/* =========================================================
   TENT HOUSE SECTION — Warm, Elegant, Wedding-Like
   ========================================================= */
.section-tent {
    background: var(--tent-gradient);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Subtle decorative pattern */
.section-tent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tent-header h2 {
    color: #3d2200;
}

.tent-header p {
    color: #6b5230;
}

.tent-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.tent-card {
    background: white;
    border: 1px solid var(--tent-accent-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.06);
    position: relative;
    overflow: hidden;
}

.tent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tent-primary), #d4a017, var(--tent-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--tent-glow);
    border-color: var(--tent-primary);
}

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

.tent-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--tent-icon-bg);
    color: var(--tent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tent-card:hover .tent-icon {
    background: var(--tent-primary);
    color: white;
    transform: scale(1.08);
}

.tent-card h3 {
    font-size: 1.2rem;
    color: #3d2200;
    margin-bottom: 10px;
    font-weight: 800;
}

.tent-card p {
    font-size: 0.92rem;
    color: #7a6040;
    line-height: 1.6;
}

/* =========================================================
   SECTION DIVIDER — Wave between Tent & DJ
   ========================================================= */
.section-divider {
    position: relative;
    height: 80px;
    background: var(--dj-bg-dark);
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-light);
    clip-path: ellipse(55% 70% at 50% 0%);
}

/* =========================================================
   DJ & SOUND SECTION — Dark, Energetic, Nightlife Feel
   ========================================================= */
.section-dj {
    background: var(--dj-gradient);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Animated glow orbs */
.section-dj::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 6s ease-in-out infinite;
    pointer-events: none;
}

.section-dj::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseOrb 8s ease-in-out infinite 2s;
    pointer-events: none;
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

.dj-header h2 {
    color: white;
}

.dj-header p {
    color: rgba(255, 255, 255, 0.7);
}

.dj-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism DJ Cards */
.dj-card {
    background: var(--dj-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--dj-border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.dj-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dj-primary), #a78bfa, var(--dj-primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dj-primary);
    box-shadow: var(--dj-glow);
}

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

.dj-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.dj-card:hover .dj-icon {
    background: var(--dj-primary);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.dj-card h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.dj-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Equalizer Animation (decorative) */
.eq-bars {
    display: flex;
    gap: 3px;
    align-items: flex-end;
    justify-content: center;
    height: 30px;
    margin: 0 auto 20px;
    opacity: 0.6;
}

.eq-bar {
    width: 4px;
    background: var(--dj-primary);
    border-radius: 2px;
    animation: eqBounce 1.2s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 20px; animation-delay: 0.15s; }
.eq-bar:nth-child(3) { height: 28px; animation-delay: 0.3s; }
.eq-bar:nth-child(4) { height: 16px; animation-delay: 0.45s; }
.eq-bar:nth-child(5) { height: 24px; animation-delay: 0.6s; }

@keyframes eqBounce {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* DJ Section Divider (bottom, transitioning to light bg) */
.section-divider-bottom {
    position: relative;
    height: 80px;
    background: var(--bg-light);
    overflow: hidden;
}

.section-divider-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #2d1b69;
    clip-path: ellipse(55% 70% at 50% 0%);
}

/* ================= OLD SERVICES GRID (kept as fallback / reused) ================= */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }

.feature-card {
    background: white; padding: 40px 30px; border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-card);
    text-align: center; transition: 0.3s;
}
.feature-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.icon-box {
    width: 70px; height: 70px; border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 24px;
}
.icon-box.blue { background: #e3f2fd; color: var(--primary); }
.icon-box.purple { background: #f3e5f5; color: #8e24aa; }
.icon-box.gold { background: #fffde7; color: #fbc02d; }
.icon-box.red { background: #ffebee; color: #e53935; }

.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--text-dark); }
.feature-card p { color: #666; }

/* ================= BOOKING FORM ================= */
.booking-section {
    background: white;
    padding: 90px 0;
}
.booking-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F7FA 100%);
    border-radius: 36px;
    border: 1px solid rgba(176, 138, 61, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}
.booking-info-pane {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.booking-info-pane h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 1.2;
}
.booking-info-pane p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.6;
}
.booking-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.booking-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}
.booking-checklist li i {
    color: #10B981;
    font-size: 1.2rem;
}
.booking-form-pane {
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}
.form-row {
    display: flex;
    gap: 20px;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.input-wrapper {
    position: relative;
    width: 100%;
}
.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    z-index: 10;
    transition: color 0.3s ease;
}
.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FAF9F6;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}
.form-input:focus {
    border-color: var(--dj-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.08);
}
.form-input:focus + .input-icon {
    color: var(--dj-primary);
}
.btn-whatsapp-full {
    background: linear-gradient(135deg, #25d366 0%, #1ebc57 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 18px;
    border-radius: 50px;
    width: 100%;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 10px;
}
.btn-whatsapp-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

/* ================= TRUST SECTION (Centered) ================= */
.section-trust {
    background: white;
    text-align: center;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
}

.trust-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0;
}

.trust-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
}

.trust-list li:hover {
    transform: translateY(-8px);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--tent-primary);
}

.trust-list i {
    width: 70px;
    height: 70px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tent-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.05);
}

.trust-list li:hover i {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.trust-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.trust-list p {
    font-size: 0.95rem;
    color: #777;
    margin: 0;
}

/* ================= OWNER SECTION ================= */
.owner-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, #fffbf2 0%, #fff8e5 100%);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(184, 134, 11, 0.15);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.05);
}

.owner-image img {
    border-radius: 20px;
    width: 300px;
    height: 350px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.15);
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    font-size: 2.2rem;
    margin: 10px 0;
    color: var(--text-dark);
}

.owner-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.signature {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--tent-primary-dark);
    margin-top: 20px;
    display: block;
    font-weight: 700;
}

.btn-primary-sm {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.btn-primary-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
    filter: brightness(1.1);
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .owner-image img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    .owner-info {
        width: 100%;
    }
}

/* =========================================
   7. EVENTS GALLERY SECTION & LOADING SPINNER
   ========================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 45px;
}

.event-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(21, 101, 192, 0.12);
}

.event-card.hidden-event {
    display: none;
}

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

.event-card.revealed {
    display: flex;
    animation: slideDownIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.event-header {
    display: flex;
    flex-direction: column;
}

.event-cover {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.event-card:hover .event-cover {
    transform: scale(1.03);
}

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

.event-meta {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-header-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 1.3;
}

.event-header-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.event-gallery {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fafbfc;
    padding: 20px 25px;
}

.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(65px, 1fr));
    gap: 10px;
}

.gallery-item {
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    background: #e9ecef;
    cursor: pointer;
    transition: transform 0.2s ease;
}

/* Spinner Styles */
.loader-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: #f8f9fa;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(21, 101, 192, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Image Loaded State */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img.loaded {
    opacity: 1;
}

.gallery-item:hover img.loaded {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    z-index: 3;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.see-more-events-wrapper {
    text-align: center;
    margin-top: 40px;
}

.icon-arrow {
    transition: transform 0.3s ease;
}

.see-more-events-wrapper button:hover .icon-arrow {
    transform: translateY(2px);
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .event-cover {
        height: 200px;
    }
    .event-header-info {
        padding: 20px;
    }
    .event-gallery {
        padding: 15px 20px;
    }
}


/* ================= FOOTER ================= */
footer {
    background: #0d0914;
    color: white;
    padding: 80px 0 30px;
    position: relative;
    border-top: 2px solid transparent;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tent-primary) 0%, var(--primary) 50%, var(--dj-primary) 100%);
}
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; margin-bottom: 30px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-info i { color: var(--gold); margin-right: 10px; }

/* ================= LIGHTBOX ================= */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    user-select: none;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 45px;
    cursor: pointer;
    z-index: 2020;
    transition: transform 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

/* Controls */
.lightbox-controls {
    position: absolute;
    top: 20px;
    left: 25px;
    display: flex;
    gap: 12px;
    z-index: 2020;
}
.lightbox-btn {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Lightbox Arrow Buttons */
.lightbox-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2010;
}

.lightbox-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow-btn.prev {
    left: 30px;
}

.lightbox-arrow-btn.next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-arrow-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .lightbox-arrow-btn.prev {
        left: 15px;
    }
    .lightbox-arrow-btn.next {
        right: 15px;
    }
}

/* Image Viewport wrapper */
.lightbox-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
    cursor: grab;
    transform-origin: center center;
    display: block;
    opacity: 1;
}

.lightbox-content:active {
    cursor: grabbing;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero {
        padding: 60px 0 100px;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-text-side {
        margin: 0 auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-card-stack {
        margin: 0 auto;
    }
    .stats-section {
        margin-top: -40px;
    }
    .stats-grid {
        padding: 30px;
        gap: 20px;
    }
    .stat-item {
        min-width: 120px;
    }
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .booking-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-info-pane {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 40px;
    }
    .booking-form-pane {
        padding: 40px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-layout-wrapper {
        grid-template-columns: 1fr;
    }
    .testimonial-card, .cta-card {
        padding: 40px 30px;
    }

    .hero h1 { font-size: 2.5rem; }
    .owner-card { flex-direction: column; text-align: center; padding: 30px; }
    .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 80%; background: white; flex-direction: column; padding: 100px 30px; transition: 0.3s; z-index: 999; align-items: flex-start; }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block;
        font-size: 1.8rem;
        color: var(--text-dark); /* Ensure it's visible against white */
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2001; /* CRITICAL: Higher than the menu */
        position: relative; /* Keeps it clickable */}

    .section-tent,
    .section-dj {
        padding: 60px 0;
    }
    .tent-showcase,
    .dj-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .tent-showcase,
    .dj-showcase {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 2.1rem; }
    .hero-actions { flex-direction: column; }
    .hero-card-stack {
        height: 380px;
        max-width: 320px;
    }
    .stack-card {
        width: 240px;
    }
    .card-img-wrapper {
        height: 140px;
    }
    .stats-grid {
        flex-direction: column;
        gap: 24px;
    }
    .locations-card {
        padding: 30px 20px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: floatPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #1ebc57;
}
@keyframes floatPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================
   12. GOOGLE REVIEW CTA
   ========================================= */
/* ================= GOOGLE REVIEW CTA & TESTIMONIALS ================= */
.review-cta-section {
    background: white;
    padding: 90px 0;
}
.review-layout-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
}
.testimonial-card {
    background: #FAF8F5;
    border: 1px solid rgba(176, 138, 61, 0.15);
    border-radius: var(--radius);
    padding: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(176, 138, 61, 0.15);
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.88rem;
    color: var(--text-muted);
}
.cta-card {
    background: linear-gradient(135deg, #0A0812 0%, #120e24 100%);
    border-radius: var(--radius);
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: var(--dj-glow);
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    width: fit-content;
}
.cta-card h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 800;
}
.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}
.btn-google-review {
    background: white;
    color: var(--text-dark);
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-google-review:hover {
    transform: translateY(-3px);
    background: #FAF8F5;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
}
.btn-google-review i {
    color: #4285F4;
}
.stars-animation {
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    gap: 6px;
}

/* ================= SERVICE AREAS & LOCATIONS ================= */
.locations-section {
    background: var(--bg-light);
    padding: 80px 0 50px;
}
.locations-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-card);
    padding: 50px 40px;
    text-align: center;
}
.locations-header {
    margin-bottom: 35px;
}
.locations-header i {
    font-size: 2.2rem;
    color: var(--tent-primary);
    margin-bottom: 12px;
}
.locations-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.locations-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.area-tags span {
    background: #FAF8F5;
    border: 1px solid rgba(176, 138, 61, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.area-tags span:hover {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}

/* ================= STATS ================= */
.stats-section {
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 25;
}
.stats-section .container {
    max-width: 950px;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 35px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
.stat-item {
    flex: 1;
    min-width: 150px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0, 0, 0, 0.06);
}
.stat-item h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-dark);
    display: block;
}
.stat-item:nth-child(1) h2 {
    color: var(--tent-primary-dark);
}
.stat-item:nth-child(2) h2 {
    color: var(--dj-primary-dark);
}
.stat-item:nth-child(3) h2 {
    color: #10B981; /* Emerald for happy clients */
}
.stat-item p {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ================= PROCESS GRID (How We Work) ================= */
.process-section {
    background: var(--bg-light);
    padding: 90px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    margin-top: 40px;
}
.process-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-card);
    z-index: 2;
}
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--tent-primary-dark);
}
.step-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    font-family: var(--font-serif);
    transition: color 0.3s ease;
}
.process-card:hover .step-badge {
    color: rgba(176, 138, 61, 0.15);
}
.step-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #FAF8F5;
    color: var(--tent-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(176, 138, 61, 0.1);
}
.process-card:hover .step-icon-wrapper {
    background: linear-gradient(135deg, var(--tent-primary) 0%, var(--dj-primary) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}
.process-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.process-card:nth-child(even):hover {
    border-color: var(--dj-primary);
}
.process-card:nth-child(even):hover .step-badge {
    color: rgba(99, 102, 241, 0.15);
}

/* ================= DHAM SECTION (Tent House Styled) ================= */
.section-dham {
    background: var(--tent-accent);
    position: relative;
}

.dham-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.dham-card {
    background: white;
    border: 2px dashed rgba(184, 134, 11, 0.3);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.dham-card:hover {
    border-color: var(--tent-primary);
    transform: translateY(-5px);
    box-shadow: var(--tent-glow);
}

.dham-card i {
    font-size: 2.5rem;
    color: var(--tent-primary);
    margin-bottom: 15px;
}

.dham-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #3d2200;
}

.dham-card p {
    font-size: 0.9rem;
    color: #7a6040;
}

/* ================= FAQ ================= */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--tent-primary);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}
.faq-item:nth-child(even) {
    border-left-color: var(--dj-primary);
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}
.faq-item h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-dark); font-weight: 700; }
.faq-item p { color: #666; margin: 0; }