/* ===== Reset & Variables ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --maroon: #6b1e1e;
    --maroon-deep: #4a1414;
    --maroon-dark: #2d0a0a;
    --saffron: #d97706;
    --saffron-bright: #f59e0b;
    --gold: #c9a961;
    --gold-bright: #d4af37;
    --cream: #faf6ee;
    --cream-soft: #f5ede0;
    --cream-warm: #fff8e7;
    --text-dark: #1a1a1a;
    --text-muted: #5c5c5c;
    --text-light: #8a8a8a;
    --shadow-sm: 0 2px 8px rgba(74, 20, 20, 0.08);
    --shadow: 0 8px 24px rgba(74, 20, 20, 0.12);
    --shadow-lg: 0 20px 50px rgba(74, 20, 20, 0.18);
    --border: rgba(201, 169, 97, 0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--maroon-deep);
    letter-spacing: 0.5px;
}

.om {
    font-family: 'Tiro Devanagari Hindi', serif;
    color: var(--saffron);
}

a { text-decoration: none; }

/* ===== Marquee ===== */
.marquee-bar {
    background: linear-gradient(135deg, #f59e0b, #d97706 50%, #f59e0b);
    color: var(--maroon-dark);
    padding: 11px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--maroon-deep);
    position: relative;
    z-index: 50;
}

.marquee-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-track span { padding: 0 30px; }

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

.marquee-bar:hover .marquee-track { animation-play-state: paused; }

/* ===== Side Badge ===== */
.side-badge {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--gold-bright);
    padding: 22px 12px;
    border-radius: 12px 0 0 12px;
    box-shadow: -6px 6px 25px rgba(0, 0, 0, 0.3);
    z-index: 90;
    border: 2px solid var(--gold);
    border-right: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-badge:hover {
    transform: translateY(-50%) translateX(-6px) scale(1.05);
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: var(--maroon-deep);
    box-shadow: 
        -10px 10px 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
    padding-right: 20px;
}

.side-badge:hover span {
    color: var(--maroon-deep);
    letter-spacing: 5px;
}

.side-badge::after {
    content: '💬';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    background: var(--saffron);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.side-badge:hover::after {
    opacity: 1;
}

.side-badge span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 4px;
    display: block;
    padding: 8px 0;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon-dark));
    color: var(--cream);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-info { display: flex; gap: 25px; flex-wrap: wrap; }
.top-info span { color: var(--cream); }

.top-cta a {
    color: var(--gold-bright);
    font-weight: 600;
    transition: 0.3s;
}

.top-cta a:hover { color: var(--cream); }

/* ===== Header ===== */
.header {
    background: rgba(250, 246, 238, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(74, 20, 20, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    gap: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo .om {
    font-size: 46px;
    line-height: 1;
}

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--maroon-deep);
    white-space: nowrap;
}

.logo-tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.logo-tagline .pandit-name {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    color: var(--saffron);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--maroon-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 2px;
}

.nav { display: flex; gap: 22px; align-items: center; }

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

.nav a:hover { color: var(--saffron); }

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    transition: width 0.3s;
}

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s;
    color: var(--saffron);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 12px 30px rgba(74, 20, 20, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    color: var(--text-dark) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    border-bottom: 1px solid rgba(74, 20, 20, 0.05);
}

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

.nav-dropdown-menu a:hover {
    background: var(--cream-soft) !important;
    color: var(--saffron) !important;
    padding-left: 24px !important;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--maroon-deep);
    cursor: pointer;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 50%, #1a0f2e 100%);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
    color: var(--cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40% 80%, white, transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 10% 60%, white, transparent),
        radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 30% 10%, white, transparent),
        radial-gradient(1px 1px at 50% 90%, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 85% 85%, white, transparent),
        radial-gradient(1px 1px at 15% 45%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 95% 15%, white, transparent),
        radial-gradient(circle at 30% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(201, 169, 97, 0.15) 0%, transparent 40%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px, 160px 160px, 140px 140px, 200px 200px, 170px 170px, 190px 190px, 210px 210px, 155px 155px, 175px 175px, 100% 100%, 100% 100%;
    z-index: 0;
    animation: stars-twinkle 8s ease-in-out infinite alternate;
}

@keyframes stars-twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 50px 0 70px;
}

/* Sherawali */
.hero-sherawali {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 30px;
}

/* Outer glow aura */
.hero-sherawali::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 200, 80, 0.4) 0%, 
        rgba(217, 119, 6, 0.25) 30%, 
        rgba(201, 169, 97, 0.15) 50%, 
        transparent 70%);
    filter: blur(30px);
    animation: aura-pulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes aura-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Light beams from behind devi */
.hero-sherawali::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(255, 215, 100, 0.15) 10deg, 
            transparent 30deg,
            transparent 90deg,
            rgba(255, 215, 100, 0.1) 100deg,
            transparent 120deg,
            transparent 180deg,
            rgba(255, 215, 100, 0.15) 190deg,
            transparent 210deg,
            transparent 270deg,
            rgba(255, 215, 100, 0.1) 280deg,
            transparent 300deg,
            transparent 360deg);
    border-radius: 50%;
    animation: rays-rotate 30s linear infinite;
    z-index: 0;
    filter: blur(2px);
}

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

/* Chakra rings around devi */
.chakra-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.chakra-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed var(--gold-bright);
    border-radius: 50%;
    opacity: 0.5;
    animation: chakra-spin 40s linear infinite;
}

.chakra-ring::after {
    content: '';
    position: absolute;
    inset: 8%;
    border: 1px solid var(--saffron-bright);
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    opacity: 0.7;
    animation: chakra-spin 25s linear infinite reverse;
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.3), inset 0 0 30px rgba(217, 119, 6, 0.2);
}

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

/* Om Symbol - Center centerpiece */
.om-symbol {
    font-family: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', serif;
    font-size: 280px;
    line-height: 1;
    color: var(--gold-bright);
    text-align: center;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ffd700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: om-glow 4s ease-in-out infinite, om-shimmer 6s linear infinite;
    text-shadow: 0 0 60px rgba(255, 200, 80, 0.6);
    filter: drop-shadow(0 0 30px rgba(255, 200, 80, 0.8)) drop-shadow(0 0 60px rgba(217, 119, 6, 0.5));
    font-weight: 400;
    user-select: none;
}

@keyframes om-glow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 30px rgba(255, 200, 80, 0.8)) drop-shadow(0 0 60px rgba(217, 119, 6, 0.5));
    }
    50% { 
        transform: scale(1.08);
        filter: drop-shadow(0 0 50px rgba(255, 220, 100, 1)) drop-shadow(0 0 100px rgba(217, 119, 6, 0.8));
    }
}

@keyframes om-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mantra below Om */
.om-mantra {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Tiro Devanagari Hindi', serif;
    color: var(--gold-bright);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    text-align: center;
    z-index: 4;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 200, 80, 0.6);
    animation: mantra-fade 3s ease-in-out infinite;
}

@keyframes mantra-fade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Floating sparkles around devi */
.hero-sherawali .sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--gold-bright), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.sparkle:nth-child(1) { top: 10%; left: 15%; animation: sparkle-1 3s ease-in-out infinite; }
.sparkle:nth-child(2) { top: 20%; right: 10%; animation: sparkle-2 4s ease-in-out infinite 0.5s; }
.sparkle:nth-child(3) { bottom: 30%; left: 8%; animation: sparkle-3 3.5s ease-in-out infinite 1s; }
.sparkle:nth-child(4) { bottom: 15%; right: 18%; animation: sparkle-4 4.5s ease-in-out infinite 1.5s; }
.sparkle:nth-child(5) { top: 40%; left: 5%; animation: sparkle-1 3s ease-in-out infinite 2s; }
.sparkle:nth-child(6) { top: 60%; right: 5%; animation: sparkle-2 3.5s ease-in-out infinite 0.8s; }

@keyframes sparkle-1 {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); box-shadow: 0 0 20px var(--gold-bright); }
}
@keyframes sparkle-2 {
    0%, 100% { opacity: 0; transform: scale(0) translateX(0); }
    50% { opacity: 1; transform: scale(1.5) translateX(-8px); box-shadow: 0 0 20px var(--saffron-bright); }
}
@keyframes sparkle-3 {
    0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
    50% { opacity: 1; transform: scale(1.8) translateY(-6px); box-shadow: 0 0 25px var(--gold-bright); }
}
@keyframes sparkle-4 {
    0%, 100% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(2); box-shadow: 0 0 25px var(--saffron-bright); }
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 0 10px;
    color: var(--cream);
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
    color: white;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.5);
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--cream);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.h1-line { display: block; }

.h1-highlight {
    display: block;
    background: linear-gradient(135deg, var(--gold-bright), var(--saffron-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--gold-bright);
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 248, 231, 0.85);
    margin-bottom: 30px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mini-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.hero-mini-stats > div { text-align: center; }

.hero-mini-stats strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 30px;
    color: var(--gold-bright);
    font-weight: 700;
    line-height: 1;
}

.hero-mini-stats span {
    font-size: 13px;
    color: rgba(255, 248, 231, 0.7);
    margin-top: 4px;
    display: block;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 35px rgba(217, 119, 6, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--cream);
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--gold-bright);
    transition: all 0.3s;
}

.btn-secondary:hover { 
    background: var(--gold-bright); 
    color: var(--maroon-dark);
}

.hero-free-link {
    display: inline-block;
    color: var(--gold-bright);
    font-weight: 600;
    padding: 10px 18px;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.hero-free-link:hover {
    background: rgba(201, 169, 97, 0.3);
    transform: translateY(-2px);
    color: var(--cream);
}

/* Hero Pandit Photo */
.hero-pandit {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
    margin: 0 auto;
}

.pandit-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--gold-bright);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 169, 97, 0.3);
    aspect-ratio: 3/4;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pandit-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 215, 100, 0) 30%,
        rgba(255, 215, 100, 0.4) 50%,
        rgba(255, 215, 100, 0) 70%,
        transparent 100%);
    background-size: 200% 200%;
    background-position: -100% -100%;
    opacity: 0;
    transition: all 0.7s ease;
    pointer-events: none;
    z-index: 3;
}

.pandit-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 0 rgba(255, 215, 100, 0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.pandit-frame:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #ffd700;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 215, 100, 0.6),
        0 0 100px rgba(255, 165, 0, 0.3);
}

.pandit-frame:hover::before {
    opacity: 1;
    background-position: 100% 100%;
}

.pandit-frame:hover::after {
    box-shadow: inset 0 0 30px 4px rgba(255, 215, 100, 0.3);
}

.pandit-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pandit-frame:hover img {
    transform: scale(1.05);
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cred {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cream);
    border-left: 3px solid var(--saffron-bright);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-right: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

/* Zodiac Strip */
.zodiac-strip {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon-dark));
    color: var(--gold);
    padding: 14px 0;
    overflow: hidden;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.zodiac-track {
    display: inline-flex;
    white-space: nowrap;
    animation: scroll 50s linear infinite;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 15px;
}

.zodiac-track span {
    padding: 0 25px;
    border-right: 1px solid rgba(201, 169, 97, 0.2);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    color: var(--saffron);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 46px;
    margin-bottom: 18px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--maroon-deep);
}

.about-text p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.85;
}

.about-text strong { color: var(--maroon-deep); }

.about-text blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: var(--cream-soft);
    border-left: 4px solid var(--saffron);
    border-radius: 8px;
    font-size: 17px;
    color: var(--maroon-deep);
    position: relative;
    line-height: 1.7;
}

.about-text blockquote cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.about-text h4 {
    font-size: 18px;
    margin: 24px 0 14px;
    color: var(--maroon);
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.expertise-list span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ac {
    background: var(--cream);
    padding: 24px 20px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(74, 20, 20, 0.06);
}

.ac::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--saffron) 0%, 
        var(--gold-bright) 50%, 
        var(--saffron) 100%);
    border-radius: 12px 12px 0 0;
    z-index: 2;
}

.ac::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 11px;
    pointer-events: none;
    z-index: 1;
}

.ac:hover {
    border-color: var(--gold-bright);
    transform: translateY(-6px);
    box-shadow: 
        0 16px 32px rgba(74, 20, 20, 0.12),
        0 0 25px rgba(201, 169, 97, 0.2);
}

.ac:hover::before {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--saffron-bright) 0%, 
        #ffd700 50%, 
        var(--saffron-bright) 100%);
}

.ac > * {
    position: relative;
    z-index: 2;
}

.ac-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.ac h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.ac p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Stats ===== */
.stats {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: 'ॐ';
    position: absolute;
    font-size: 500px;
    color: var(--gold);
    opacity: 0.04;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Tiro Devanagari Hindi', serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--cream);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(74, 20, 20, 0.08), 0 2px 6px rgba(74, 20, 20, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--gold);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--saffron) 0%, 
        var(--gold-bright) 50%, 
        var(--saffron) 100%);
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(74, 20, 20, 0.15),
        0 0 30px rgba(201, 169, 97, 0.25);
    border-color: var(--gold-bright);
}

.service-card:hover::before {
    height: 5px;
    background: linear-gradient(90deg, 
        var(--saffron-bright) 0%, 
        #ffd700 50%, 
        var(--saffron-bright) 100%);
}

.service-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

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

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

.service-body {
    padding: 22px 20px;
}

.service-body h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.service-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    min-height: 60px;
    line-height: 1.6;
}

.service-link {
    color: var(--saffron);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.service-link:hover { color: var(--maroon); }

/* Service Categories */
.service-category {
    margin-bottom: 60px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.cat-title {
    font-size: 26px;
    color: var(--maroon-deep);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.services-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    max-width: 950px;
    margin: 0 auto;
}

/* ===== Horoscope ===== */
.horoscope {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.horoscope::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 40% 80%, white, transparent),
        radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.5), transparent);
    background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px, 160px 160px;
    opacity: 0.5;
    z-index: 0;
}

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

.horoscope .section-header h2 { color: var(--cream); }
.horoscope .section-header p { color: rgba(255, 248, 231, 0.75); }
.horoscope .eyebrow { color: var(--gold-bright); }

/* Period Dropdown */
.horoscope-dropdown-wrap {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.horoscope-dropdown-wrap label {
    color: var(--gold-bright);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.period-select {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-bright);
    color: var(--cream);
    padding: 12px 40px 12px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: all 0.3s;
    min-width: 220px;
}

.period-select:hover, .period-select:focus {
    background-color: rgba(201, 169, 97, 0.2);
    outline: none;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.period-select option {
    background: var(--maroon-dark);
    color: var(--cream);
    padding: 10px;
}

.hor-tab {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 169, 97, 0.3);
    color: var(--cream);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.hor-tab:hover {
    border-color: var(--gold-bright);
    background: rgba(201, 169, 97, 0.15);
}

.hor-tab.active {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
    border-color: var(--saffron-bright);
    color: white;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.4);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.zodiac-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(201, 169, 97, 0.3);
    border-radius: 14px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.zodiac-card:hover {
    transform: translateY(-6px);
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold-bright);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.zodiac-symbol {
    font-size: 42px;
    color: var(--gold-bright);
    margin-bottom: 8px;
    line-height: 1;
}

.zodiac-card h4 {
    color: var(--cream);
    font-size: 17px;
    margin-bottom: 6px;
    font-family: 'Cinzel', serif;
}

.zodiac-dates {
    display: block;
    color: rgba(201, 169, 97, 0.9);
    font-size: 11px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.zodiac-en {
    display: block;
    color: rgba(255, 248, 231, 0.55);
    font-size: 11px;
    font-style: italic;
}

/* Horoscope popup (modal overlay) */
.horoscope-display {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.horoscope-display[style*="block"] {
    display: flex !important;
}

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

.horoscope-content {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    border: 2px solid var(--gold-bright);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

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

.close-horoscope {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--cream);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2;
}

.close-horoscope:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: rotate(90deg);
}

.close-horoscope {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--cream);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.close-horoscope:hover {
    background: var(--saffron);
    border-color: var(--saffron);
}

.hd-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.hd-symbol {
    font-size: 70px;
    color: var(--gold-bright);
    line-height: 1;
}

.hd-header h3 {
    color: var(--cream);
    font-size: 26px;
    margin-bottom: 4px;
}

#hdPeriod {
    color: var(--gold-bright);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hd-body p {
    color: rgba(255, 248, 231, 0.9);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hd-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    margin-top: 20px;
}

.hd-cta p {
    color: var(--gold-bright);
    margin-bottom: 16px;
    font-size: 15px;
}

.horoscope-note {
    text-align: center;
    color: rgba(255, 248, 231, 0.6);
    font-size: 14px;
    font-style: italic;
    margin-top: 20px;
}

/* ===== Pricing ===== */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #fff8e7, #ffe9c4);
    border: 3px solid var(--saffron);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
    color: white;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.pricing-head h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--maroon-deep);
}

.pricing-head p {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-amount .curr {
    font-size: 30px;
    vertical-align: top;
    margin-right: 4px;
}

.pricing-amount .per {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 8px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 24px 0;
    margin: 24px 0;
    border-top: 1px solid rgba(74, 20, 20, 0.12);
    border-bottom: 1px solid rgba(74, 20, 20, 0.12);
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 7px 0 7px 26px;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 700;
    font-size: 16px;
}

.pricing-btn {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: inline-block;
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
}

.pricing-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.pricing-note {
    background: linear-gradient(135deg, var(--cream-soft), var(--cream-warm));
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed var(--gold);
}

.pricing-note p { color: var(--text-dark); font-size: 17px; margin-bottom: 16px; }

.pricing-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.pricing-link-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* ===== Why Us ===== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream-soft), var(--cream));
}

.comparison-table {
    max-width: 880px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gold);
}

.cmp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(74, 20, 20, 0.08);
}

.cmp-row:last-child { border-bottom: none; }

.cmp-row > div {
    padding: 18px 24px;
    text-align: center;
}

.cmp-row > div:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.cmp-row.header-row {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: white;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.cmp-row.header-row > div {
    color: white;
    padding: 22px;
    font-size: 16px;
}

.cmp-row.header-row .us {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
}

.cmp-row.header-row .others {
    background: rgba(0, 0, 0, 0.2);
}

.check {
    color: #2e7d32;
    font-size: 26px;
    font-weight: bold;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
}

.cross {
    color: #c62828;
    font-size: 26px;
    font-weight: bold;
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: rgba(198, 40, 40, 0.1);
    border-radius: 50%;
}

.cmp-row:nth-child(even) { background: rgba(255, 248, 231, 0.4); }

/* ===== Puja Gallery ===== */
.puja-gallery {
    padding: 100px 0;
    background: white;
}

.puja-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.puja-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow);
    cursor: pointer;
    border: 2px solid var(--gold);
}

.puja-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.puja-item:hover img { transform: scale(1.1); }

.puja-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(74, 20, 20, 0.9));
    color: white;
    padding: 30px 14px 14px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
}

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

.puja-cta p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0e2e 0%, #2d1b4e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    font-size: 700px;
    color: var(--gold);
    opacity: 0.05;
    top: -100px;
    left: -50px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.testimonials .section-header h2 { color: var(--cream); }
.testimonials .section-header p { color: rgba(255, 248, 231, 0.7); }
.testimonials .eyebrow { color: var(--gold-bright); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.t-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
}

.t-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: var(--gold-bright);
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}

.t-card p {
    color: rgba(255, 248, 231, 0.9);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.t-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-bright));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 16px;
}

.t-info h4 {
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 2px;
    font-family: 'Cinzel', serif;
}

.t-info span {
    color: rgba(201, 169, 97, 0.85);
    font-size: 13px;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover { border-color: var(--gold); }

.faq-item.active {
    border-color: var(--saffron);
    background: white;
    box-shadow: var(--shadow);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--maroon-deep);
    transition: color 0.3s;
}

.faq-q:hover { color: var(--saffron); }

.faq-icon {
    background: var(--saffron);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--maroon);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a { max-height: 500px; }

.faq-a p {
    padding: 0 28px 22px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
}

.faq-a strong { color: var(--maroon-deep); }

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-soft), var(--cream-warm));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    color: inherit;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.contact-card.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-card.whatsapp-card h3,
.contact-card.whatsapp-card .contact-cta { color: white; }

.contact-icon { font-size: 50px; margin-bottom: 16px; }

.contact-card h3 { font-size: 22px; margin-bottom: 10px; }

.contact-card p { font-size: 18px; margin-bottom: 16px; }

.contact-cta {
    color: var(--saffron);
    font-weight: 600;
    font-size: 14px;
}

.contact-hours {
    text-align: center;
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px dashed var(--gold);
    max-width: 600px;
    margin: 0 auto;
}

.contact-hours h4 {
    color: var(--maroon);
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-hours p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-deep));
    color: var(--cream);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .om { font-size: 50px; color: var(--gold-bright); }
.footer-brand h3 { color: var(--cream); font-size: 22px; margin: 10px 0; }
.footer-brand p {
    color: rgba(255, 248, 231, 0.8);
    font-size: 15px;
    max-width: 380px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--gold-bright);
    font-size: 17px;
    margin-bottom: 16px;
    font-family: 'Cinzel', serif;
}

.footer-col a, .footer-col p {
    display: block;
    color: rgba(255, 248, 231, 0.85);
    margin-bottom: 8px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.social-icons { display: flex; gap: 12px; margin-top: 20px; }

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 169, 97, 0.15);
    border: 1.5px solid rgba(201, 169, 97, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--gold-bright);
    color: var(--maroon-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 248, 231, 0.6);
    font-size: 14px;
}

/* ===== Float WhatsApp ===== */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 99;
    animation: pulse 2s infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(37, 211, 102, 0.7),
        0 0 30px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
    animation: none;
}

.float-whatsapp:hover .wa-icon {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7); }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-sherawali { max-width: 380px; margin: 0 auto; }
    .om-symbol { font-size: 240px; }
    .om-mantra { font-size: 20px; }
    .hero-pandit { max-width: 400px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid.three-col { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .puja-grid { grid-template-columns: repeat(3, 1fr); }
    .zodiac-grid { grid-template-columns: repeat(4, 1fr); }
    .container { padding: 0 20px; }
}

@media (max-width: 900px) {
    .container { padding: 0 18px; }
    .hero-content h1 { font-size: 38px; }
    .section-header h2 { font-size: 34px; }
    .section-header p { font-size: 16px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .services-grid.three-col { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto 40px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .nav, .btn-whatsapp { display: none; }
    .menu-toggle { display: block; }
    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 14px;
        z-index: 99;
    }
    .nav-dropdown { width: 100%; text-align: center; }
    .nav-dropdown-toggle { 
        width: 100%; 
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
    }
    .nav-dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: 1px solid var(--gold);
        border-radius: 10px;
        margin-top: 8px;
        background: var(--cream);
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
        display: none;
        min-width: unset;
    }
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none !important;
    }
    .nav-dropdown-menu a {
        text-align: center !important;
    }
    .top-info { gap: 12px; font-size: 12px; justify-content: center; }
    .top-bar-inner { justify-content: center; flex-direction: column; }
    .top-cta { font-size: 13px; }
    .zodiac-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .cat-title { font-size: 22px; }
    .horoscope-tabs { gap: 8px; }
    .hor-tab { padding: 10px 16px; font-size: 13px; }
}

@media (max-width: 600px) {
    body { font-size: 16px; }
    .container { padding: 0 16px; }
    
    /* Top bar mobile */
    .top-bar { padding: 8px 0; }
    .top-info { font-size: 11px; gap: 8px; }
    .top-info span:nth-child(3) { display: none; }
    
    /* Marquee */
    .marquee-track { font-size: 11px; letter-spacing: 1.5px; }
    .marquee-track span { padding: 0 20px; }
    
    /* Side badge - hide on small mobile */
    .side-badge { display: none; }
    
    /* Header */
    .header-inner { padding: 12px 16px; }
    .logo { gap: 10px; }
    .logo-name { font-size: 16px; }
    .logo-tagline { font-size: 10px; }
    .logo .om { font-size: 32px; }
    .menu-toggle { font-size: 24px; }
    
    /* Hero */
    .hero { padding: 30px 0 0; }
    .hero-inner { padding: 20px 0 40px; gap: 30px; }
    .hero-sherawali { max-width: 280px; padding: 20px; }
    .om-symbol { font-size: 160px; }
    .om-mantra { font-size: 14px; letter-spacing: 1.5px; }
    .hero-badge { font-size: 11px; padding: 6px 16px; margin-bottom: 16px; }
    .hero-content h1 { font-size: 30px; line-height: 1.2; margin-bottom: 16px; }
    .hero-desc { font-size: 15px; margin-bottom: 20px; padding: 0 5px; }
    .hero-mini-stats { gap: 14px; padding: 14px 0; margin-bottom: 20px; }
    .hero-mini-stats strong { font-size: 22px; }
    .hero-mini-stats span { font-size: 11px; }
    .hero-buttons { gap: 10px; }
    .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 14px; width: 100%; max-width: 280px; justify-content: center; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-free-link { font-size: 12px; padding: 8px 14px; }
    .hero-pandit { max-width: 280px; }
    .cred { font-size: 12px; padding: 8px 12px; }
    .zodiac-strip { padding: 10px 0; }
    .zodiac-track { font-size: 12px; }
    .zodiac-track span { padding: 0 15px; }
    
    /* Section spacing */
    section { padding: 60px 0 !important; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 26px; line-height: 1.25; }
    .section-header p { font-size: 14px; }
    .eyebrow { font-size: 11px; letter-spacing: 2px; }
    
    /* About */
    .about-text h3 { font-size: 22px; }
    .about-text p { font-size: 15px; }
    .about-text blockquote { font-size: 15px; padding: 18px 20px; }
    .expertise-list { grid-template-columns: 1fr; gap: 4px; }
    .expertise-list span { font-size: 14px; padding: 4px 0; }
    .about-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ac { padding: 18px 14px; }
    .ac-icon { font-size: 32px; }
    .ac h4 { font-size: 15px; }
    .ac p { font-size: 13px; }
    
    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-num { font-size: 36px; }
    .stat-label { font-size: 12px; }
    
    /* Services */
    .services-grid, .services-grid.three-col { grid-template-columns: 1fr; gap: 20px; }
    .cat-title { font-size: 20px; margin-bottom: 20px; }
    .service-category { margin-bottom: 40px; }
    .service-body { padding: 18px 16px; }
    .service-body h3 { font-size: 18px; }
    .service-body p { font-size: 14px; min-height: auto; margin-bottom: 12px; }
    
    /* Pricing */
    .pricing-card { padding: 32px 24px; }
    .pricing-amount { font-size: 42px; }
    .pricing-amount .curr { font-size: 26px; }
    .pricing-features li { font-size: 14px; padding: 6px 0 6px 22px; }
    .pricing-note { padding: 24px 16px; }
    .pricing-note p { font-size: 15px; }
    
    /* Comparison */
    .cmp-row { grid-template-columns: 1.6fr 0.7fr 0.7fr; }
    .cmp-row > div { padding: 12px 8px; font-size: 13px; }
    .cmp-row > div:first-child { font-size: 13px; }
    .cmp-row.header-row > div { padding: 14px 8px; font-size: 11px; letter-spacing: 0.5px; }
    .check, .cross { width: 28px; height: 28px; line-height: 28px; font-size: 16px; }
    
    /* Horoscope */
    .zodiac-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .zodiac-card { padding: 16px 10px; }
    .zodiac-symbol { font-size: 36px; }
    .zodiac-card h4 { font-size: 15px; }
    .horoscope-tabs { flex-wrap: wrap; gap: 6px; }
    .hor-tab { padding: 8px 14px; font-size: 12px; flex: 1 1 calc(50% - 6px); min-width: 0; }
    .horoscope-display { padding: 24px 18px; margin: 30px 0; }
    .hd-header { gap: 14px; padding-bottom: 14px; margin-bottom: 18px; }
    .hd-symbol { font-size: 48px; }
    .hd-header h3 { font-size: 20px; }
    .hd-body p { font-size: 15px; }
    .close-horoscope { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 14px; }
    
    /* Puja Gallery */
    .puja-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    /* Testimonials */
    .t-card { padding: 24px 20px; }
    .t-card p { font-size: 14px; }
    
    /* FAQ */
    .faq-q { font-size: 14px; padding: 16px 18px; gap: 12px; }
    .faq-a p { font-size: 14px; padding: 0 18px 16px; }
    .faq-icon { width: 26px; height: 26px; font-size: 16px; }
    
    /* Contact */
    .contact-card { padding: 28px 20px; }
    .contact-icon { font-size: 40px; }
    .contact-card h3 { font-size: 18px; }
    .contact-card p { font-size: 16px; }
    .contact-hours { padding: 20px 16px; }
    .contact-hours h4 { font-size: 16px; }
    .contact-hours p { font-size: 13px; }
    
    /* Footer */
    .footer { padding: 50px 0 20px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-brand p { margin: 0 auto; max-width: 100%; }
    .social-icons { justify-content: center; }
    .footer-col h4 { margin-top: 10px; }
    .footer-bottom { font-size: 12px; }
    
    /* Float WhatsApp */
    .float-whatsapp { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
}

@media (max-width: 380px) {
    .container { padding: 0 14px; }
    .hero-content h1 { font-size: 26px; }
    .om-symbol { font-size: 130px; }
    .stat-num { font-size: 30px; }
    .section-header h2 { font-size: 22px; }
    .pricing-amount { font-size: 36px; }
}

/* Tighter header for laptop screens to prevent button overlap */
@media (min-width: 901px) and (max-width: 1200px) {
    .nav { gap: 16px; }
    .nav a { font-size: 14px; }
    .btn-whatsapp { 
        padding: 9px 16px; 
        font-size: 12px;
    }
    .logo-name { font-size: 18px; }
    .logo-tagline { font-size: 11px; }
    .logo-tagline .pandit-name { font-size: 13px; }
    .logo .om { font-size: 36px; }
}

/* WhatsApp Inline Icon */
.wa-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    display: inline-block;
    fill: currentColor;
    margin-right: 4px;
    flex-shrink: 0;
}

/* Floating WhatsApp button override - bigger icon, green tint */
.float-whatsapp .wa-icon {
    width: 1.6em;
    height: 1.6em;
    margin-right: 0;
    color: white;
}

/* Hero buttons larger icon */
.btn-primary .wa-icon,
.btn-secondary .wa-icon {
    width: 1.1em;
    height: 1.1em;
    margin-right: 6px;
}

/* Header Book Now button - keep size tight */
.btn-whatsapp .wa-icon {
    width: 1em;
    height: 1em;
    color: white;
}

/* Service card link - small icon */
.service-link .wa-icon {
    width: 0.95em;
    height: 0.95em;
}

/* Top bar tiny */
.top-cta .wa-icon {
    width: 0.95em;
    height: 0.95em;
}

/* ===== Mobile Sticky Bottom CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(74, 20, 20, 0.15);
    z-index: 98;
    padding: 10px 12px;
    gap: 10px;
    border-top: 2px solid var(--gold);
}

.mobile-sticky-cta .msc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.mobile-sticky-cta .msc-call {
    background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
    color: var(--cream);
    box-shadow: 0 4px 12px rgba(74, 20, 20, 0.3);
}

.mobile-sticky-cta .msc-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.mobile-sticky-cta .msc-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mobile-sticky-cta .msc-btn:active {
    transform: scale(0.96);
}

/* Show only on mobile/tablet */
@media (max-width: 768px) {
    .mobile-sticky-cta { 
        display: flex; 
    }
    
    /* Hide floating WhatsApp button on mobile - sticky CTA covers it */
    .float-whatsapp { 
        display: none; 
    }
    
    /* Add bottom padding to body so sticky CTA doesn't cover footer */
    body { 
        padding-bottom: 72px; 
    }
}

/* ===== Video Testimonials ===== */
.video-testimonials {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--gold);
}

.video-testimonials h3 {
    text-align: center;
    font-size: 24px;
    color: var(--maroon-deep);
    margin-bottom: 24px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.video-placeholder {
    background: linear-gradient(135deg, #1a0f2e, #2d1b4e);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vp-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold-bright);
}

.vp-text strong {
    display: block;
    color: var(--cream);
    font-size: 15px;
    margin-bottom: 4px;
}

.vp-text span {
    color: rgba(255, 248, 231, 0.6);
    font-size: 13px;
}

.vp-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), #b45309);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.vp-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.video-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
}

/* ===== Festival Section ===== */
.festival-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff8e7 0%, #fef3c7 100%);
}

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

.festival-card {
    background: white;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.festival-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--gold-bright), var(--saffron));
    border-radius: 14px 14px 0 0;
}

.festival-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(74, 20, 20, 0.15), 0 0 20px rgba(201, 169, 97, 0.2);
    border-color: var(--gold-bright);
}

.fc-icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
}

.festival-card h4 {
    font-size: 18px;
    color: var(--maroon-deep);
    margin-bottom: 10px;
}

.festival-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.fc-cta {
    display: inline-block;
    color: var(--saffron);
    font-weight: 600;
    font-size: 14px;
}

/* ===== Newsletter Box ===== */
.newsletter-box {
    background: linear-gradient(135deg, #1a0f2e, #2d1b4e);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    border: 2px solid var(--gold);
    margin-top: 50px;
}

.nl-icon { font-size: 48px; margin-bottom: 14px; }

.newsletter-box h3 {
    color: var(--cream);
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: rgba(255, 248, 231, 0.75);
    font-size: 15px;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.nl-btn {
    display: inline-block;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.nl-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

/* ===== Responsive Tier 2 ===== */
@media (max-width: 900px) {
    .video-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .festival-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-box { padding: 30px 20px; }
}

@media (max-width: 600px) {
    .festival-grid { grid-template-columns: 1fr; }
    .video-grid { max-width: 100%; }
    .nl-btn { font-size: 14px; padding: 12px 24px; }
    .newsletter-box h3 { font-size: 20px; }
}
