@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

:root {
    /* Backgrounds — pure obsidian black hierarchy */
    --bg-main: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: rgba(14, 14, 14, 0.92);
    --bg-card-hover: rgba(20, 18, 14, 0.97);

    /* Borders — gold at low opacity for sophistication */
    --border-color: rgba(180, 140, 40, 0.22);
    --border-hover: rgba(212, 175, 55, 0.65);

    /* Text — crisp white hierarchy */
    --text-primary: #f5f0e8;
    --text-secondary: #c8b89a;
    --text-muted: #7a6a55;

    /* Gold palette — the brand signature */
    --gold-primary: #c9a84c;
    --gold-secondary: #e8c96e;
    --gold-dark: #9a7a2e;
    --gold-royal: #d4af37;
    --gold-bright: #ffd700;
    --gold-rgb: 180, 140, 40;

    /* Accent colours */
    --saffron: #e8943a;
    --vermilion: #8b1a1a;
    --marigold: #c85000;
    --deep-indigo: #08060e;
    --mystic-purple: #2d1a4a;
    --royal-red: #6b0000;

    /* FX */
    --glow-color: rgba(201, 168, 76, 0.45);
    --glow-strong: rgba(201, 168, 76, 0.70);
    --glass-blur: blur(20px);
    --transition-speed: 0.35s;

    /* Typography */
    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-body: 'Jost', 'Arial', Helvetica, sans-serif;
    --font-accent: 'Cinzel', 'Georgia', serif;
    --font-mono: 'Courier New', Courier, monospace;

    /* Shadows */
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.70), 0 1px 0 rgba(201, 168, 76, 0.08);
    --gold-glow-shadow: 0 0 20px rgba(201, 168, 76, 0.20), 0 0 60px rgba(201, 168, 76, 0.08);

    /* Gradients */
    --btn-gradient: linear-gradient(135deg, #c9a84c 0%, #e8c96e 50%, #c9a84c 100%);
    --gold-shimmer: linear-gradient(90deg, #c9a84c 0%, #ffd700 40%, #e8c96e 60%, #c9a84c 100%);
    --card-gradient: linear-gradient(145deg, rgba(20, 18, 14, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);

    /* Legacy compat */
    --om-gold: #c9a84c;
    --lotus-pink: #d63384;
    --kalash-blue: #0d6efd;
}


[data-theme="light"] {
    /* Light Mode (Sacred Ivory & Gold) Settings - Enhanced Premium */
    --bg-main: #fdf6e3;
    --bg-secondary: #f8efd6;
    --bg-card: rgba(255, 255, 240, 0.85);
    --bg-card-hover: rgba(255, 255, 245, 0.95);
    --border-color: rgba(212, 175, 55, 0.2);
    --border-hover: rgba(212, 175, 55, 0.5);
    --text-primary: #3e2723;
    --text-secondary: #5d4037;
    --text-muted: #8d6e63;
    --gold-primary: #ffd700;
    --gold-secondary: #fbc02d;
    --gold-dark: #f9a825;
    --saffron: #ffb300;
    --vermilion: #bf360c;
    --marigold: #fb8c00;
    --glow-color: rgba(212, 175, 55, 0.4);
    --shadow-premium: 0 10px 30px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    --card-shadow: 0 8px 32px 0 rgba(184, 134, 11, 0.1);
    --btn-gradient: linear-gradient(135deg, #ffd700, #fbc02d);
}

/* --- Base Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: clip; /* clip doesn't break position:sticky unlike overflow:hidden */
    line-height: 1.6;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
    /* Subtle grain texture for luxury feel */
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 100%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Premium vignette + gold dust overlay on pure black */
.cosmic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(ellipse at 15% 15%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 85%, rgba(201, 168, 76, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.03) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: -1;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* --- Interactive Elements & Custom CSS Keyframe Animations --- */
@keyframes spin-zodiac {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-diya {
    0% {
        transform: scale(0.95) rotate(-2deg);
        filter: drop-shadow(0 2px 5px var(--saffron)) brightness(1);
    }

    100% {
        transform: scale(1.08) rotate(3deg);
        filter: drop-shadow(0 8px 18px var(--gold-primary)) brightness(1.2);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    }

    100% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes om-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05) rotate(5deg);
        opacity: 1;
    }
}

@keyframes lotus-bloom {
    0% {
        stroke-dasharray: 0 100;
    }

    100% {
        stroke-dasharray: 100 0;
    }
}

@keyframes flame-flicker {

    0%,
    100% {
        transform: scaleY(0.95) scaleX(0.95) rotate(-1deg);
    }

    25% {
        transform: scaleY(1.02) scaleX(1.01) rotate(1deg);
    }

    50% {
        transform: scaleY(0.98) scaleX(0.97) rotate(-0.5deg);
    }

    75% {
        transform: scaleY(1.03) scaleX(0.99) rotate(0.8deg);
    }
}

@keyframes yantra-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmer-sacred {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes aurora-glow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes divine-aura {
    0% {
        box-shadow: 0 0 5px var(--gold-primary), 0 0 10px var(--gold-primary), 0 0 15px var(--saffron);
    }

    50% {
        box-shadow: 0 0 10px var(--gold-primary), 0 0 20px var(--gold-primary), 0 0 30px var(--saffron);
    }

    100% {
        box-shadow: 0 0 5px var(--gold-primary), 0 0 10px var(--gold-primary), 0 0 15px var(--saffron);
    }
}

@keyframes mandala-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin-zodiac {
    animation: spin-zodiac 120s linear infinite;
    transform-origin: center;
}

.pulse-diya {
    animation: pulse-diya 1.5s ease-in-out infinite alternate;
    transform-origin: bottom center;
}

.floating-graphic {
    animation: floating 6s ease-in-out infinite;
}

/* =====================================================
   ANNOUNCEMENT BAR — sticky, above fixed header
   ===================================================== */
.ann-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    width: 100%;
    height: 36px;
    background: linear-gradient(90deg, #0a0600 0%, #1a1000 50%, #0a0600 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}
.ann-bar.dismissed { height: 0; opacity: 0; pointer-events: none; }

.ann-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1.25rem 0 1.25rem;
    gap: 1rem;
}

.ann-trust {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.7rem; color: rgba(201,168,76,0.7);
    white-space: nowrap; letter-spacing: 0.4px;
}
.ann-trust i { color: #4ade80; font-size: 0.68rem; }

.ann-promo {
    flex: 1; text-align: center;
    font-size: 0.76rem; font-weight: 600;
    color: #f5e9c0; letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: center; gap: 0.45rem;
    white-space: nowrap;
}
.ann-promo i { color: var(--gold-primary); font-size: 0.7rem; }
.ann-code {
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-secondary); padding: 0.05rem 0.45rem; border-radius: 4px;
    font-weight: 700; letter-spacing: 1px; font-size: 0.72rem; cursor: pointer;
    transition: background 0.2s;
}
.ann-code:hover { background: rgba(201,168,76,0.28); }

.ann-phone {
    display: flex; align-items: center; gap: 0.35rem;
    font-size: 0.7rem; color: rgba(201,168,76,0.7);
    text-decoration: none; white-space: nowrap; letter-spacing: 0.3px;
}
.ann-phone i { color: var(--gold-primary); font-size: 0.68rem; }
.ann-phone:hover { color: var(--gold-primary); }

.ann-close {
    background: none; border: none; color: rgba(201,168,76,0.4);
    cursor: pointer; font-size: 0.72rem; padding: 0 0 0 0.4rem;
    flex-shrink: 0; line-height: 1; transition: color 0.2s;
}
.ann-close:hover { color: var(--gold-primary); }

@media (max-width: 640px) {
    .ann-trust, .ann-phone { display: none; }
    .ann-promo { font-size: 0.68rem; }
}

/* =====================================================
   SITE HEADER — fixed floating pill (dark gold)
   ===================================================== */

/* Fixed wrapper — always at top, floats above content */
.site-header {
    position: fixed;
    top: 36px; /* below ann-bar */
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    padding: 8px 2%;
    transition: padding 0.35s ease, top 0.3s ease;
    pointer-events: none;
}
.site-header * {
    pointer-events: auto;
}
/* When scrolled past ann-bar or ann-bar dismissed, snap to very top */
.site-header.scrolled {
    padding: 5px 2%;
}

/* The actual pill container */
.site-header-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 1.2rem 0 0.8rem;
    height: 60px;
    max-width: 1380px;
    margin: 0 auto;
    width: 100%;

    /* Pill styling */
    background: rgba(10, 8, 4, 0.93);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.7),
        0 1px 0 rgba(201,168,76,0.08),
        inset 0 1px 0 rgba(255,255,255,0.03);
    transition: height 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.site-header.scrolled .site-header-inner {
    height: 54px;
    background: rgba(6, 5, 2, 0.98);
    border-color: rgba(201,168,76,0.38);
    box-shadow:
        0 12px 40px rgba(0,0,0,0.88),
        0 1px 0 rgba(201,168,76,0.12);
}

[data-theme="light"] .site-header-inner {
    background: rgba(30, 22, 8, 0.95);
    border-color: rgba(212,175,55,0.35);
}

/* ── Logo ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
    color: var(--text-primary);
    padding: 0 0.5rem 0 0.2rem;
}
.site-logo img {
    width: 36px; height: 36px; object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(201,168,76,0.35));
}
.site-logo:hover img { transform: rotate(-6deg) scale(1.08); }
.site-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo-name {
    font-family: var(--font-heading);
    font-size: 1.1rem; font-weight: 800;
    background: linear-gradient(135deg, #c9a84c, #ffd700, #e8c96e, #c9a84c);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    letter-spacing: 1.5px;
}
.site-logo-tagline {
    font-size: 0.54rem; color: var(--text-muted);
    letter-spacing: 1.2px; font-family: var(--font-body);
    white-space: nowrap;
}

/* ── Desktop Nav — centered ── */
.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-nav ul {
    display: flex; align-items: center;
    gap: 0; list-style: none; margin: 0; padding: 0;
}
.site-nav li a {
    display: block;
    font-size: 0.76rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.8px;
    padding: 0.35rem 0.65rem;
    border-radius: 50px;
    color: rgba(201,168,76,0.75);
    position: relative;
    transition: color 0.22s ease;
    white-space: nowrap;
}
.site-nav li a::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1.5px;
    background: var(--btn-gradient);
    transition: width 0.28s ease; border-radius: 2px;
}
.site-nav li a:hover,
.site-nav li.active a { color: var(--gold-primary); }
.site-nav li a:hover::after,
.site-nav li.active a::after { width: calc(100% - 1.3rem); }
.site-nav li a.nav-highlight { color: #f5c842; }
.site-nav li a.nav-highlight i { color: var(--gold-primary); }

/* ── Actions area (right side) ── */
.site-header-actions {
    display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
}

/* Desktop search */
.desktop-search {
    position: relative;
    display: flex; align-items: center;
}
.header-search-form {
    display: flex; align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    padding: 0 0.75rem 0 0.6rem;
    height: 32px;
    gap: 0.4rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 160px;
}
.header-search-form:focus-within {
    border-color: rgba(201,168,76,0.55);
    box-shadow: 0 0 10px rgba(201,168,76,0.14);
    width: 200px;
}
.header-search-form .search-icon {
    color: rgba(201,168,76,0.4); font-size: 0.7rem; flex-shrink: 0;
}
.header-search-input {
    background: none; border: none; outline: none;
    color: var(--text-primary); font-size: 0.75rem;
    font-family: var(--font-body); width: 100%;
    transition: width 0.3s;
}
.header-search-input::placeholder { color: rgba(201,168,76,0.32); font-size: 0.7rem; }

/* Account button */
.hdr-btn {
    display: flex; align-items: center; gap: 5px;
    background: transparent;
    border: 1px solid rgba(201,168,76,0.25);
    color: rgba(201,168,76,0.85);
    padding: 0.3rem 0.8rem;
    border-radius: 50px; cursor: pointer;
    font-family: var(--font-body); font-size: 0.78rem;
    transition: all 0.22s ease;
    white-space: nowrap;
}
.hdr-btn:hover {
    border-color: var(--gold-primary); color: var(--gold-primary);
    background: rgba(201,168,76,0.07);
    box-shadow: 0 0 10px rgba(201,168,76,0.18);
}
.hdr-btn-label { font-weight: 600; font-size: 0.73rem; letter-spacing: 0.3px; }

/* Icon-only buttons (mobile) */
.hdr-icon-btn {
    display: none; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: transparent; border: 1px solid rgba(201,168,76,0.22);
    color: rgba(201,168,76,0.8); cursor: pointer;
    font-size: 0.88rem; transition: all 0.22s ease;
}
.hdr-icon-btn:hover { border-color: var(--gold-primary); color: var(--gold-primary); }

/* Mobile search bar (slides below pill) */
.mobile-search-bar {
    display: none;
    width: 100%; max-height: 0; overflow: hidden;
    padding: 0 2%;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-search-bar.open {
    display: block;
    max-height: 60px; padding: 0.4rem 2%;
}
.mobile-search-form {
    display: flex; align-items: center; gap: 0.55rem;
    background: rgba(10,8,4,0.95);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 50px; padding: 0.38rem 1rem; width: 100%;
}
.mobile-search-form i:first-child { color: rgba(201,168,76,0.4); font-size: 0.78rem; }
.mobile-search-input {
    flex: 1; background: none; border: none; outline: none;
    color: var(--text-primary); font-size: 0.84rem; font-family: var(--font-body);
}
.mobile-search-input::placeholder { color: rgba(201,168,76,0.32); }
.mobile-search-close {
    background: none; border: none; color: rgba(201,168,76,0.45);
    cursor: pointer; font-size: 0.84rem; padding: 0; transition: color 0.2s;
}
.mobile-search-close:hover { color: var(--gold-primary); }

/* ── Visibility utilities ── */
.mobile-only { display: none !important; }
.desktop-only { display: block; }

/* Offset for fixed ann-bar (36px) + site-header pill area (36px+60px+10px pad) */
body { padding-top: 106px; }

/* =====================================================
   MOBILE NAV DRAWER + SEEKER PANEL
   ===================================================== */
/* Shared overlay */
.drawer-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
    z-index: 299; transition: opacity 0.3s ease;
}
.drawer-overlay.active { display: block; }

/* Mobile Nav Drawer */
.mobile-drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(300px, 85vw);
    background: #080604;
    border-right: 1px solid rgba(201,168,76,0.2);
    z-index: 300; display: flex; flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 40px rgba(0,0,0,0.8);
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.14);
}
.mobile-drawer-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-secondary); cursor: pointer; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.mobile-drawer-close:hover { color: var(--gold-primary); border-color: var(--gold-primary); }

.mobile-drawer-nav { flex: 1; padding: 0.8rem 0; }
.mobile-drawer-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer-nav li a {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.78rem 1.4rem; font-size: 0.92rem;
    color: var(--text-secondary); font-weight: 500;
    transition: all 0.2s; border-left: 2px solid transparent;
}
.mobile-drawer-nav li a i { width: 16px; color: rgba(201,168,76,0.45); font-size: 0.82rem; }
.mobile-drawer-nav li a:hover,
.mobile-drawer-nav li.active a {
    color: var(--gold-primary); border-left-color: var(--gold-primary);
    background: rgba(201,168,76,0.06);
}
.mobile-drawer-nav li a.nav-highlight { color: #f5c842; }
.mobile-drawer-nav li a.nav-highlight i { color: #fff; font-size: 0.78rem; }

.mobile-drawer-footer {
    padding: 0.8rem 1.2rem;
    border-top: 1px solid rgba(201,168,76,0.14);
    display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center;
}
.mobile-quick-link {
    display: flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18);
    color: var(--text-secondary); padding: 0.4rem 0.8rem;
    border-radius: 50px; font-size: 0.8rem; text-decoration: none;
    transition: all 0.2s; position: relative;
}
.mobile-quick-link:hover { color: var(--gold-primary); border-color: var(--gold-primary); }
.mobile-badge {
    background: var(--gold-primary); color: #000;
    font-size: 0.65rem; font-weight: 700; padding: 0 5px;
    border-radius: 10px; min-width: 18px; text-align: center;
}
.mobile-account-area { width: 100%; margin-top: 0.3rem; }
.mobile-signin-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--btn-gradient); color: #0a0800;
    padding: 0.5rem 1.1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700; text-decoration: none;
    transition: filter 0.2s;
}
.mobile-signin-btn:hover { filter: brightness(1.1); }

.mobile-drawer-lang {
    padding: 0.7rem 1.2rem 1rem;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex; align-items: center; gap: 0.7rem;
}
.mobile-drawer-lang-label { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.35rem; }
.mobile-lang-btns { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.mlang-btn {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-secondary); padding: 0.22rem 0.55rem;
    border-radius: 6px; font-size: 0.74rem; cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body);
}
.mlang-btn:hover { color: var(--gold-primary); border-color: var(--gold-primary); }

/* Seeker Panel (right side) */
.seeker-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 90vw);
    background: #080604;
    border-left: 1px solid rgba(201,168,76,0.2);
    z-index: 300; display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 40px rgba(0,0,0,0.8);
    overflow-y: auto;
}
.seeker-panel.open { transform: translateX(0); }

.seeker-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(201,168,76,0.14);
}
.seeker-panel-header h3 {
    font-size: 0.95rem; font-weight: 700;
    color: var(--text-primary); letter-spacing: 0.5px;
}
.seeker-panel-header h3 i { color: var(--gold-primary); margin-right: 6px; }
.seeker-panel-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-secondary); cursor: pointer; font-size: 0.9rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.seeker-panel-close:hover { color: var(--gold-primary); border-color: var(--gold-primary); }

.seeker-panel-body { flex: 1; padding: 0.5rem 0; overflow-y: auto; }

.sp-section { padding: 0.9rem 1.2rem; border-bottom: 1px solid rgba(201,168,76,0.08); }
.sp-section:last-child { border-bottom: none; }
.sp-section-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 0.65rem;
}

/* Profile */
.sp-signin-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--btn-gradient); color: #0a0800;
    padding: 0.55rem 1.2rem; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; text-decoration: none;
    width: 100%; justify-content: center; transition: filter 0.2s;
}
.sp-signin-btn:hover { filter: brightness(1.08); }

.sp-user-card {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0 0.75rem;
}
.sp-user-avatar { font-size: 2rem; color: var(--gold-primary); line-height: 1; }
.sp-user-info { display: flex; flex-direction: column; }
.sp-user-name { font-size: 0.92rem; font-weight: 700; color: var(--text-primary); }
.sp-user-role { font-size: 0.72rem; color: var(--gold-primary); margin-top: 2px; }

.sp-user-links { display: flex; flex-direction: column; gap: 0.2rem; }
.sp-user-link {
    display: flex; align-items: center; gap: 0.55rem;
    padding: 0.55rem 0.75rem; border-radius: 8px;
    font-size: 0.86rem; color: var(--text-secondary);
    text-decoration: none; transition: all 0.2s;
}
.sp-user-link i { width: 14px; font-size: 0.82rem; color: var(--gold-primary); }
.sp-user-link:hover { color: var(--gold-primary); background: rgba(201,168,76,0.08); }
.sp-user-link.sp-signout i { color: #ef4444; }
.sp-user-link.sp-signout:hover { color: #ef4444; background: rgba(239,68,68,0.08); }

/* Activity */
.sp-activity { display: flex; flex-direction: column; gap: 0.25rem; }
.sp-activity-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.55rem 0.75rem; border-radius: 8px;
    font-size: 0.86rem; color: var(--text-secondary);
    text-decoration: none; transition: all 0.2s;
}
.sp-activity-left { display: flex; align-items: center; gap: 0.55rem; }
.sp-activity-left i { width: 14px; font-size: 0.82rem; color: rgba(201,168,76,0.55); }
.sp-activity-item:hover { color: var(--gold-primary); background: rgba(201,168,76,0.06); }
.sp-badge {
    background: var(--gold-primary); color: #000;
    font-size: 0.65rem; font-weight: 700; padding: 1px 6px;
    border-radius: 10px; min-width: 20px; text-align: center;
}

/* Language */
.sp-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.sp-lang-btn {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
    color: var(--text-secondary); padding: 0.45rem 0.5rem;
    border-radius: 8px; font-size: 0.8rem; cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body); text-align: center;
}
.sp-lang-btn:hover { color: var(--gold-primary); border-color: var(--gold-primary); background: rgba(201,168,76,0.07); }

/* ── Visibility utilities ── */
.mobile-only { display: none !important; }
.desktop-only { display: block; }

/* =====================================================
   PILLAR NAV CARD — ICON UPGRADE
   ===================================================== */
.pillar-icon-fa {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.25s ease;
}

.pillar-nav-card:hover .pillar-icon-fa {
    transform: scale(1.1) rotate(-3deg);
}

.pillar-badge-top {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* --- View Section Navigation --- */
.view-section {
    display: block;
    padding: 4rem 5%;
    max-width: 1300px;
    margin: 0 auto;
    animation: fade-in 0.6s ease forwards;
    min-height: calc(100vh - 160px);
}

/* Hero section — small top gap below pill, full width */
#home-view {
    padding-top: 1.5rem;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* --- Section Formatting & Typography Utilities --- */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f5f0e8 0%, #c9a84c 40%, #e8c96e 60%, #f5f0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gold-divider {
    width: 100px;
    height: 3px;
    background: var(--btn-gradient);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
}

.gold-divider::before {
    content: '◆';
    color: var(--gold-primary);
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--bg-main);
    padding: 0 8px;
}

/* --- Hero Section (Home) - Astrotalk Style --- */
.hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3.5rem 2rem 3rem;
    min-height: 550px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(201, 168, 76, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 40px 70px, rgba(201, 168, 76, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 90px 40px, rgba(212, 175, 55, 0.45) 50%, transparent 50%),
        radial-gradient(1px 1px at 130px 80px, rgba(201, 168, 76, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 160px 30px, rgba(212, 175, 55, 0.5) 50%, transparent 50%);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

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

.hero-text {
    animation: slide-up 0.8s ease forwards;
    max-width: 700px;
    text-align: left;
    padding-left: 30px;
}

.badge-spiritual {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: #ffd700;
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.badge-spiritual svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 800;
    background: none;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero h2 .highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition-speed) ease;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--btn-gradient);
    background-size: 200% auto;
    color: #0a0800;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.28), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-primary:hover::after {
    left: 150%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
    background-position: right center;
    filter: brightness(1.08);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Zodiac Wheel Animation - Black Theme */
.zodiac-wheel {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #2a2a2a 0%, #0d0d0d 70%);
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.3), 0 0 120px rgba(212, 175, 55, 0.15), inset 0 0 60px rgba(0, 0, 0, 0.8);
    animation: float 4s ease-in-out infinite;
}

.zodiac-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 50%, #d4af37 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    z-index: 10;
}

.zodiac-center-text {
    font-size: 2.5rem;
    color: #0d0d0d;
    font-weight: bold;
    margin-bottom: 2px;
}

.zodiac-center-label {
    font-size: 0.9rem;
    color: #0d0d0d;
    font-weight: 700;
    margin-bottom: 2px;
}

.zodiac-center-sub {
    font-size: 0.7rem;
    color: #0d0d0d;
    font-weight: 600;
}

.zodiac-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.zodiac-rashi {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: pulse-rashi 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-rashi:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 100%);
    color: #0d0d0d;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
    transform: scale(1.15);
}

.zodiac-rashi:nth-child(1) {
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0);
}

.zodiac-rashi:nth-child(2) {
    top: 7%;
    left: 75%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(3) {
    top: 25%;
    left: 92%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(4) {
    top: 50%;
    left: 95%;
    transform: translate(-50%, -50%);
}

.zodiac-rashi:nth-child(5) {
    top: 75%;
    left: 85%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(6) {
    top: 88%;
    left: 65%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(7) {
    top: 95%;
    left: 40%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(8) {
    top: 88%;
    left: 15%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(9) {
    top: 70%;
    left: 5%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(10) {
    top: 45%;
    left: 2%;
    transform: translate(-50%, -50%);
}

.zodiac-rashi:nth-child(11) {
    top: 22%;
    left: 5%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(12) {
    top: 7%;
    left: 22%;
    transform: translate(0, 0);
}

.zodiac-rashi:nth-child(odd) {
    animation-delay: 0s;
}

.zodiac-rashi:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes pulse-rashi {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
    }
}

.zodiac-wheel:hover .zodiac-ring {
    animation-play-state: paused;
}

.zodiac-wheel-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
}

.hero-avatar-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-premium), 0 0 30px rgba(212, 175, 55, 0.2);
    z-index: 2;
}

.hero-avatar-icon {
    width: 80px;
    height: 80px;
    fill: var(--gold-primary);
}

/* Hero Social Proof Strip - Astrotalk Style */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    border-top: none;
    padding-top: 0;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-avatars {
    display: flex;
    align-items: center;
}

.hero-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #ffd700;
    margin-left: -10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar.a1 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-avatar.a2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-avatar.a3 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hero-avatar.a4 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #ffd700;
    font-weight: 600;
}

.hero-rating .stars {
    color: #ffd700;
    letter-spacing: 1px;
}

.hero-stats-numbers {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-stat-num {
    text-align: center;
}

.hero-stat-num .num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.hero-stat-num .label {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin-top: 2px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(10, 8, 0, 0.4) 100%);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    pointer-events: none;
    z-index: 1;
}

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

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(201, 168, 76, 0.15);
}

.stat-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
    transition: all var(--transition-speed) ease;
    z-index: 2;
}

.stat-item:hover .stat-icon-wrapper {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold-primary);
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.stat-item h4 {
    font-size: 1.6rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin: 0;
    letter-spacing: 1px;
    z-index: 2;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    z-index: 2;
    transition: color var(--transition-speed) ease;
}

.stat-item:hover p {
    color: var(--text-primary);
}

/* --- About Us Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-graphic {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.about-graphic svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-feature-card svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-primary);
}

.about-feature-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.about-feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--btn-gradient);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

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

.service-icon-wrapper {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.8rem;
    color: var(--gold-primary);
}

.service-icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.service-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    width: 100%;
}

.service-features-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-primary);
    flex-shrink: 0;
}

/* Astrologers Directory layout inside Consultation/Service context */
.astrologers-layout {
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 400px;
}

.search-input-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
}

.search-input {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 0.7rem 1rem 0.7rem 2.8rem;
    border-radius: 30px;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition-speed) ease;
}

.search-input:focus {
    border-color: var(--gold-primary);
}

.filter-group {
    display: flex;
    gap: 0.8rem;
}

.filter-select {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition-speed) ease;
}

.filter-select:focus {
    border-color: var(--gold-primary);
}

.astrologers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.astrologer-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.astrologer-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-online {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}

.status-offline {
    background: rgba(149, 165, 166, 0.15);
    color: #95a5a6;
    border: 1px solid rgba(149, 165, 166, 0.4);
}

.status-busy {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.astrologer-avatar-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(212, 175, 55, 0.05);
    margin-bottom: 1.2rem;
    overflow: hidden;
}

.astrologer-avatar-wrapper svg {
    width: 55px;
    height: 55px;
    fill: var(--gold-primary);
}

.astrologer-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
}

.astrologer-specialty {
    font-size: 0.85rem;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.astrologer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.astrologer-details {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.detail-label {
    color: var(--text-muted);
}

.detail-val {
    font-weight: 500;
    text-align: right;
}

.astrologer-actions {
    width: 100%;
    display: flex;
    gap: 0.5rem;
}

.astrologer-actions button {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.82rem;
    border-radius: 20px;
}

/* --- Category-Wise Shop Section --- */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.tab-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.tab-btn.active-tab {
    background: var(--btn-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1.25;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: border-color var(--transition-speed) ease;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.product-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.product-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* --- Interactive Consultation Room Simulator --- */
.consultation-room {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.video-pane {
    background: #000000;
    border-radius: 16px;
    position: relative;
    aspect-ratio: 1.6;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.priest-avatar-video {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1a0f30 0%, #06030c 100%);
}

.video-graphic-lotus {
    width: 120px;
    height: 120px;
    fill: var(--gold-primary);
    margin-bottom: 1rem;
}

.video-status-text {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.video-control-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-speed) ease;
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.video-control-btn:hover {
    background: var(--gold-primary);
    color: #000000;
    border-color: transparent;
}

.video-control-btn.btn-hangup {
    background: #e74c3c;
}

.video-control-btn.btn-hangup:hover {
    background: #c0392b;
    color: #ffffff;
}

.timer-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #2ecc71;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2ecc71;
    animation: pulse-diya 1s infinite alternate;
}

.chat-pane {
    display: flex;
    flex-direction: column;
    height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.chat-header {
    background: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
}

.chat-header-avatar svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.chat-header-info h5 {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.chat-header-info p {
    font-size: 0.75rem;
    color: #2ecc71;
}

.chat-messages {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-bubble {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.bubble-received {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
    align-self: flex-start;
}

.bubble-sent {
    background: var(--btn-gradient);
    color: #ffffff;
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-input-area {
    border-top: 1px solid var(--border-color);
    padding: 0.8rem;
    display: flex;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.15);
}

.chat-input-area input {
    flex-grow: 1;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--gold-primary);
}

.chat-send-btn {
    background: var(--btn-gradient);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
}

.chat-send-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Simulated interactive widgets at the bottom of the video room */
.consultation-footer-tools {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    margin-top: 1rem;
}

.tool-left {
    display: flex;
    gap: 1rem;
}

.dakshina-drawer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dakshina-btn {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid var(--saffron);
    color: var(--saffron);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dakshina-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.dakshina-btn:hover {
    background: var(--saffron);
    color: var(--bg-main);
}

/* --- Admin Dashboard Layout --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.dashboard-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dash-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: var(--card-shadow);
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
}

.dash-stat-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.dash-stat-info h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dash-stat-info p {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

.dash-row-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
}

.dash-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--card-shadow);
}

.dash-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
}

.dash-panel-header h4 {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.table-wrapper {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.dash-table th,
.dash-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dash-table th {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 600;
}

.dash-table td {
    color: var(--text-secondary);
}

.dash-actions-cell {
    display: flex;
    gap: 0.4rem;
}

.dash-btn-mini {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-mini-approve {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.btn-mini-approve:hover {
    background: #2ecc71;
    color: #ffffff;
}

.btn-mini-decline {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-mini-decline:hover {
    background: #e74c3c;
    color: #ffffff;
}

.dash-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dash-input-field {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    font-size: 0.9rem;
}

.dash-input-field:focus {
    border-color: var(--gold-primary);
}

/* --- Contact Us Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    display: flex;
    gap: 1.2rem;
    box-shadow: var(--card-shadow);
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    outline: none;
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
    width: 100%;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Styled Form controls with inner icons */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-decor {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-secondary);
    font-size: 1.1rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 5;
}

.form-control-with-icon {
    padding-left: 2.8rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.input-icon-wrapper:focus-within .input-icon-decor {
    color: var(--gold-primary);
    transform: scale(1.1) translateY(-50%);
    /* Preserve translateY alignment */
}

/* Modal Actions Buttons Layout */
.modal-actions-btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
    width: 100%;
}

/* Button micro-animations */
.modal-box .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-box .btn:hover {
    transform: translateY(-2px);
}

.modal-box .btn:active {
    transform: scale(0.97) translateY(0);
}

/* --- Modals (Booking, Checkout & Privacy Policy) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 4, 20, 0.82);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 500;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active-modal {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: rgba(13, 9, 38, 0.85);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    padding: 2.8rem;
    position: relative;
    transform: scale(0.9) translateY(45px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 215, 0, 0.08);
}

[data-theme="light"] .modal-box {
    background: rgba(243, 234, 224, 0.92);
    border: 1px solid rgba(184, 134, 11, 0.35);
    box-shadow: 0 30px 60px rgba(184, 134, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.modal-overlay.active-modal .modal-box {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    padding-bottom: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="light"] .modal-close {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--border-hover);
    transform: scale(1.15) rotate(90deg);
}

.modal-title {
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
    font-family: var(--font-heading);
}

/* Privacy Modal Specifics */
.privacy-box {
    max-width: 750px;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-content h4 {
    color: var(--gold-primary);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.privacy-content p {
    margin-bottom: 1rem;
}

/* Booking Success Modal specifics */
.success-check-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.success-check-wrapper svg {
    width: 75px;
    height: 75px;
    fill: #2ecc71;
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.4));
}

.success-check-wrapper h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.success-check-wrapper p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 380px;
}

/* --- Footer --- */
.footer {
    position: relative;
    background: var(--bg-secondary);
    padding: 5rem 5% 3.5rem;
    margin-top: 8rem;
}

/* Curvy Wave Footer divider */
.footer-wave-divider {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.footer-wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 120px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.8rem;
}

.footer-links-wrapper {
    display: flex;
    gap: 4rem;
}

.footer-link-group h5 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-link-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link-group a {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

/* --- User Profile Header Widget --- */
.user-profile-widget {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-speed) ease;
}

.profile-trigger:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    min-width: 160px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: var(--glass-blur);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 200;
    overflow: hidden;
}

.user-profile-widget:hover .profile-dropdown,
.user-profile-widget:focus-within .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a,
.profile-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
}

/* --- Authentication Card Styles --- */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    min-height: calc(100vh - 250px);
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    backdrop-filter: var(--glass-blur);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    animation: slide-up 0.5s ease;
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.auth-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-control {
    width: 100%;
    padding-right: 2.8rem;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.2rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--gold-primary);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.auth-options label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--text-secondary);
}

.auth-options a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-options a:hover {
    text-decoration: underline;
}

.auth-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-footer-text a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

.auth-error-box {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #ff8a80;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    display: none;
    align-items: center;
    gap: 8px;
    animation: fade-in 0.3s ease;
}

/* --- Responsive Adaptations (Media Queries) --- */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dash-row-split {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem 2rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 350px;
        margin: 0 auto;
    }

    .zodiac-wheel {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 968px) {
    .view-section {
        padding: 2.5rem 1.5rem;
    }

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

    .consultation-room {
        grid-template-columns: 1fr;
    }

    .consultation-footer-tools {
        grid-column: span 1;
        flex-direction: column;
        align-items: stretch;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

/* --- Zigzag Layout and Landing Page Redesign --- */
.zigzag-section {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.zigzag-row.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.zigzag-row.reverse .zigzag-text {
    order: 2;
}

.zigzag-row.reverse .zigzag-visual {
    order: 1;
}

.zigzag-visual {
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--card-shadow);
    min-height: 380px;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    overflow: hidden;
}

.zigzag-visual:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.zigzag-visual svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.zigzag-text h3 {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zigzag-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.zigzag-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.zigzag-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.zigzag-text ul li svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
    flex-shrink: 0;
}

/* Pillars Section Grid */
.pillars-section {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

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

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--card-shadow);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.pillar-icon-wrapper {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.8rem;
    color: var(--gold-primary);
}

.pillar-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.pillar-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Animations for new SVGs */
@keyframes orbit {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animate-orbit {
    animation: orbit 40s linear infinite;
    transform-origin: center;
}

@keyframes float-gentle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float-gentle 5s ease-in-out infinite;
}

@keyframes flame-glow {
    0% {
        transform: scaleY(0.95) scaleX(0.95);
        opacity: 0.9;
    }

    50% {
        transform: scaleY(1.05) scaleX(1.02);
        opacity: 1;
    }

    100% {
        transform: scaleY(0.95) scaleX(0.95);
        opacity: 0.9;
    }
}

.animate-flame {
    animation: flame-glow 2s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Responsive Overrides for Landing Page Redesign */
@media (max-width: 1024px) {

    .zigzag-row,
    .zigzag-row.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .zigzag-row.reverse .zigzag-text {
        order: 1;
    }

    .zigzag-row.reverse .zigzag-visual {
        order: 2;
    }

    .zigzag-text ul {
        display: inline-block;
        text-align: left;
    }

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

/* Language Dropdown Selector Styles */
.lang-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    z-index: 150;
    min-width: 140px;
    overflow: hidden;
    flex-direction: column;
}

.lang-dropdown-wrapper:hover .lang-dropdown-menu {
    display: flex;
}

.lang-dropdown-menu button {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.65rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    width: 100%;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.lang-dropdown-menu button:hover {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
}

/* Spiritual Vibe & Aura Enhancements */
.zigzag-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 81, 0, 0.05) 0%, rgba(183, 28, 28, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: rotate(30deg);
}

.gold-divider::before {
    color: var(--marigold);
    text-shadow: 0 0 8px rgba(230, 81, 0, 0.6);
}

.badge-spiritual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--marigold), var(--gold-primary));
    box-shadow: 0 6px 20px rgba(230, 81, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.4);
}



/* --- Featured Offerings Slider Section --- */
.featured-slider-section {
    padding: 6rem 5% 4rem;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.slider-outer-container {
    position: relative;
    margin-top: 3.5rem;
    padding: 0 4rem;
}

.slider-window {
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 300%;
}

.slide-card {
    width: 33.333%;
    flex-shrink: 0;
    box-sizing: border-box;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--card-shadow);
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.slide-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(255, 215, 0, 0.04);
}

.slide-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.slide-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.slide-badge {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-text-side h3 {
    font-size: 2.2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--gold-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
}

.slide-text-side p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.slide-text-side .btn {
    padding: 0.8rem 2.2rem;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.slide-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 260px;
}

.slide-vector-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.slide-vector-wrapper svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--gold-secondary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="light"] .slider-arrow {
    background: rgba(0, 0, 0, 0.02);
}

.slider-arrow:hover {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--border-hover);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Pagination Dots */
.slider-dots-container {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-dot.active-dot {
    opacity: 1;
    background: var(--gold-primary);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Responsive tweaks for slider */
@media (max-width: 992px) {
    .slide-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .slide-text-side {
        align-items: center;
    }

    .slide-card {
        padding: 3rem 2rem;
    }

    .slider-outer-container {
        padding: 0;
    }

    .slider-arrow {
        display: none;
    }
}

/* --- Reviews / Testimonials Section --- */
.reviews-section {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.reviews-container {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    width: 100%;
}

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

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

.review-card-glowing {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem 2.5rem;
    width: 100%;
    position: relative;
    box-shadow: var(--card-shadow);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.review-card-glowing:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium), 0 0 25px rgba(255, 215, 0, 0.05);
}

.review-quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: var(--gold-secondary);
    line-height: 1;
    background: var(--bg-main);
    width: 80px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    pointer-events: none;
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    font-size: 1.05rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    flex-grow: 1;
}

.review-author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 1.8rem;
}

.review-avatar-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 215, 0, 0.05);
}

.review-avatar-wrapper svg {
    width: 100%;
    height: 100%;
}

.review-metadata {
    text-align: left;
}

.review-metadata .author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.review-metadata .author-title {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.review-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #2ecc71;
    font-weight: 600;
}

.review-verified-badge svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* Responsive adjustments for reviews */
@media (max-width: 768px) {
    .review-card-glowing {
        padding: 3rem 1.8rem 2rem;
    }

    .review-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .review-author-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .review-metadata {
        text-align: center;
    }
}

/* --- Scroll Reveal Animations Utility --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(35px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Visual Images Hover Zoom Transitions --- */
.zigzag-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.zigzag-visual:hover img {
    transform: scale(1.05);
}

.zodiac-wheel-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.zodiac-wheel-wrapper:hover img {
    transform: scale(1.06);
}

/* ========================================
   NEW SECTIONS CSS — SEO + LEAD GEN UPDATE
   ======================================== */

/* --- Screen Reader Only (SEO H1) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Trust Strip --- */
.trust-strip {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 5%;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.trust-badge-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .trust-strip-inner {
        gap: 0.5rem;
    }

    .trust-divider {
        display: none;
    }

    .trust-badge-item {
        padding: 0.4rem 0.8rem;
    }
}

/* --- Lead Gen Section --- */
.leadgen-section {
    padding: 6rem 5%;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.leadgen-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.leadgen-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.leadgen-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.leadgen-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 150, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.leadgen-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
}

.text-gold {
    color: var(--gold-primary);
}

.leadgen-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.leadgen-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.leadgen-benefits li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.leadgen-benefits li i {
    color: var(--gold-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.leadgen-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 215, 0, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.leadgen-social-proof p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.lsp-avatars {
    display: flex;
    align-items: center;
}

.lsp-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
    object-fit: cover;
    margin-left: -8px;
}

.lsp-avatars img:first-child {
    margin-left: 0;
}

.lsp-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    margin-left: -8px;
    border: 2px solid var(--bg-secondary);
}

/* Lead Gen Form */
.leadgen-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-premium);
}

.leadgen-form-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.lg-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.lg-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.lg-form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.3px;
}

.lg-form-group label i {
    color: var(--gold-secondary);
}

.lg-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    width: 100%;
    outline: none;
}

.lg-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.lg-input option {
    background: var(--bg-main);
}

.leadgen-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--btn-gradient);
    border: none;
    border-radius: 12px;
    color: #000;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.leadgen-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.45);
}

.leadgen-submit-btn:disabled {
    opacity: 0.8;
    transform: none;
    cursor: not-allowed;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer-sweep 2.5s infinite;
}

@keyframes shimmer-sweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.leadgen-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (max-width: 900px) {
    .leadgen-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .leadgen-title {
        font-size: 2rem;
    }

    .lg-form-row {
        grid-template-columns: 1fr;
    }
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: wa-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #25D366;
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #25D366;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

.sticky-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sticky-wa {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.sticky-free {
    background: var(--btn-gradient);
    color: #000;
}

.sticky-book {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-primary);
    border: 1px solid var(--border-color);
}

.sticky-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* --- btn-whatsapp --- */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

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

/* --- FAQ Accordion --- */
.faq-page-section {}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.faq-item.faq-open {
    border-color: var(--gold-secondary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-speed) ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-open .faq-question {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--gold-secondary);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.faq-answer a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.faq-cta-box {
    margin-top: 3.5rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(255, 100, 0, 0.04));
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.faq-cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.faq-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Team Cards (About) --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.team-card:hover .team-img-wrapper img {
    transform: scale(1.07);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.team-social a:hover {
    background: #fff;
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.team-role {
    display: inline-block;
    font-size: 0.78rem;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.team-expertise span {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- About Page Extras --- */
.page-hero-banner {
    padding: 5rem 5% 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-hero-content h2 {
    font-size: 2.8rem;
    margin: 1rem 0 0.5rem;
}

.page-hero-content p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-overlay-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--btn-gradient);
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.about-img-overlay-badge .stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #000;
    font-family: var(--font-heading);
}

.about-img-overlay-badge .stat-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.7);
}

/* About Stats Strip */
.about-stats-strip {
    padding: 3rem 5%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(255, 100, 0, 0.03));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 2rem;
}

.stats-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-strip-item {
    text-align: center;
}

.stat-strip-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-strip-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Services: How It Works Steps --- */
.steps-grid {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--btn-gradient);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
}

.step-icon {
    font-size: 2rem;
    color: var(--gold-primary);
    margin: 1rem 0 0.8rem;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    color: var(--gold-secondary);
    font-size: 1.2rem;
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .steps-grid {
        flex-direction: column;
    }

    .step-connector {
        transform: rotate(90deg);
    }
}

/* --- Footer Social Icons --- */
.footer-social-icons {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.footer-social-icons .social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 70%);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.footer-social-icons .social-icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
    z-index: -1;
}

.footer-social-icons .social-icon-btn:hover::before {
    width: 38px;
    height: 38px;
    top: 0;
    left: 0;
}

.footer-social-icons .social-icon-btn:hover {
    color: #000;
    border-color: var(--gold-primary);
    transform: translateY(-3px) scale(1.1);
}

.social-icon-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-list li,
.footer-contact-list a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contact-list li i {
    color: var(--gold-secondary);
    font-size: 0.8rem;
    width: 14px;
}

/* Sacred Mandala Pattern for Premium Background */
.sacred-mandala-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.03;
    z-index: -1;
}

.mandala-svg {
    position: absolute;
    width: 400px;
    height: 400px;
    animation: mandala-rotate 120s linear infinite;
    opacity: 0.1;
}

/* Enhanced Curvy Footer with Sacred Geometry */
.footer-enhanced {
    position: relative;
    background: var(--bg-secondary);
    padding: 5rem 5% 4rem;
    margin-top: 6rem;
}

.footer-sacred-wave {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    pointer-events: none;
}

.footer-sacred-wave svg {
    position: relative;
    display: block;
    width: calc(150% + 1px);
    height: 100%;
}

/* Premium Spiritual SVG Icons */
.svg-om-symbol {
    display: inline-block;
    width: 40px;
    height: 40px;
    animation: om-pulse 4s ease-in-out infinite;
}

.svg-lotus {
    display: inline-block;
    width: 36px;
    height: 36px;
    animation: lotus-bloom 6s ease-in-out infinite;
}

.svg-diya-flame {
    display: inline-block;
    width: 24px;
    height: 24px;
    animation: flame-flicker 2s ease-in-out infinite;
}

.svg-yantra {
    display: inline-block;
    width: 32px;
    height: 32px;
    animation: yantra-spin 30s linear infinite;
}

/* Hero Section Premium Enhancements */
.hero-sacred-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-sacred-overlay svg {
    position: absolute;
    opacity: 0.1;
}

/* Animated Diya in Hero */
.diya-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.diya-flame {
    animation: flame-flicker 1.5s ease-in-out infinite;
}

/* Section Divider with Sacred Geometry */
.sacred-divider {
    position: relative;
    height: 60px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sacred-divider::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.sacred-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    animation: om-pulse 3s ease-in-out infinite;
}

/* Premium Card Hover Effects */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.premium-hover::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gold-primary), var(--saffron), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.premium-hover:hover::before {
    opacity: 0.1;
    animation: mandala-rotate 20s linear infinite;
}

/* Button Premium Styling */
.btn-premium {
    background: linear-gradient(135deg, #ffd700, #e65100);
    background-size: 200% 200%;
    animation: aurora-glow 3s ease-in-out infinite, shimmer-sacred 3s linear infinite;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-premium:hover {
    animation: aurora-glow 1.5s ease-in-out infinite, shimmer-sacred 1.5s linear infinite;
    transform: translateY(-2px);
}

/* Badge Spiritual Premium */
.badge-spiritual-premium {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-shadow: none;
}

.badge-spiritual-premium i {
    color: var(--gold-primary);
}

.badge-spiritual-premium::after {
    display: none;
}

[data-theme="light"] .badge-spiritual-premium {
    background: rgba(255, 255, 255, 0.75);
}

/* Footer Premium Links */
.footer-legal-links a {
    position: relative;
    transition: all 0.3s ease;
}

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

.footer-legal-links a:hover::after {
    width: 100%;
}

/* Responsive Premium Adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 1.5rem 6.5rem;
    }

    .footer-enhanced {
        padding: 4.5rem 1.5rem 6.5rem;
    }

    .mandala-svg {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* --- Individual Service Details Page Styles --- */
.service-details-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3.5rem;
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.service-details-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-main-description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.service-visual-showcase {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    aspect-ratio: 16/9;
}

.service-visual-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details-section h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: all var(--transition-speed) ease;
}

.benefit-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.benefit-card i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.benefit-card h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Sidebar Booking / Shop Panel */
.sidebar-action-card {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, rgba(10, 8, 0, 0.5) 100%);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-premium), 0 15px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.sidebar-price-tag {
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding-bottom: 1.5rem;
}

.sidebar-price-tag .price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.4rem;
}

.sidebar-price-tag .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.sidebar-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.sidebar-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.sidebar-highlights li i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.sidebar-cta-btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.05rem;
    font-weight: 700;
}

/* Service FAQ Accordion */
.service-faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.3s ease;
    list-style: none;
}

.service-faq-question::-webkit-details-marker {
    display: none;
}

.service-faq-question:hover {
    color: var(--gold-primary);
}

.service-faq-question i {
    transition: transform 0.3s ease;
    color: var(--gold-primary);
}

.service-faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

details[open] .service-faq-question i {
    transform: rotate(180deg);
}

details[open] {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .service-details-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sidebar-action-card {
        position: static;
    }
}

/* Puja Catalog Section */
.puja-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.puja-catalog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all var(--transition-speed) ease;
}

.puja-catalog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
}

.puja-catalog-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.puja-catalog-card .puja-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

.puja-catalog-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.puja-catalog-card .btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
}

/* --- User Dropdown Menu Styling --- */
.user-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.user-dropdown-popup {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 170px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 0.4rem 0;
}

.user-dropdown-popup a {
    display: flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.75rem 1.1rem !important;
    font-size: 0.88rem !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: all 0.2s ease !important;
}

.user-dropdown-popup a:hover {
    background: rgba(212, 175, 55, 0.12) !important;
    color: var(--gold-secondary) !important;
}

.user-dropdown-popup a.logout-btn:hover {
    background: rgba(239, 68, 68, 0.12) !important;
}

/* User dropdown trigger transition effect */
.user-dropdown-trigger .fa-chevron-down {
    transition: transform 0.25s ease;
}

.user-dropdown-trigger.open .fa-chevron-down {
    transform: rotate(180deg);
}

/* --- Responsive: Mobile Header (pill) --- */
@media (max-width: 991px) {
    .desktop-only { display: none !important; }
    .mobile-only  { display: flex !important; }

    /* Pill padding tighter */
    .site-header { padding: 7px 3%; }
    .site-header.scrolled { padding: 5px 3%; }
    .site-header-inner { height: 52px; padding: 0 0.8rem 0 0.6rem; gap: 0; }

    /* Hide desktop search & account label */
    .desktop-search  { display: none !important; }
    .hdr-btn-label   { display: none !important; }
    .hdr-btn         { padding: 0.28rem 0.55rem !important; border-radius: 50% !important; width: 34px; height: 34px; justify-content: center; }

    /* Show icon buttons */
    .hdr-icon-btn { display: flex !important; }

    /* Logo tagline hidden */
    .site-logo-tagline { display: none; }
    .site-logo img { width: 32px; height: 32px; }
    .site-logo-name { font-size: 1rem; }

    /* Desktop nav hidden */
    .site-nav { display: none !important; }

    /* Mobile: tighter padding */
    .ann-bar { position: fixed; top: 0; }
    .site-header { top: 36px; }
}

@media (max-width: 480px) {
    .site-header { padding: 6px 2.5%; }
    .site-header-inner { padding: 0 0.65rem; }
    .site-logo-name { font-size: 0.95rem; }
    .ann-trust, .ann-phone { display: none; }
    .ann-promo { font-size: 0.67rem; }
}

/* Tablet: tighter nav */
@media (min-width: 992px) and (max-width: 1200px) {
    .site-nav li a { padding: 0.32rem 0.5rem; font-size: 0.72rem; }
    .site-logo-tagline { display: none; }
    .header-search-form { width: 130px; }
    .header-search-form:focus-within { width: 175px; }
}

/* ═══════════════════════════════════════════════════════
   HOME CONTACT / ENQUIRY LEAD FORM SECTION
   ═══════════════════════════════════════════════════════ */

.home-contact-section {
    padding: 5rem 5%;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(160deg, rgba(10,8,3,0.0) 0%, rgba(180,140,40,0.04) 50%, rgba(10,8,3,0.0) 100%);
}

.home-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left info panel */
.home-contact-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.9rem;
}

.home-contact-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-family: var(--font-heading);
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.home-contact-heading .text-gold {
    color: var(--gold-primary);
}

.home-contact-sub {
    font-size: 0.97rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.home-contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    margin-bottom: 2rem;
}

.home-contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hcd-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.home-contact-details li:hover .hcd-icon {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold-primary);
}

.home-contact-details li > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.home-contact-details strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.home-contact-details a,
.home-contact-details span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.home-contact-details a:hover {
    color: var(--gold-primary);
}

.home-contact-hours {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
}

/* Right form card */
.home-contact-form-wrap {
    position: relative;
}

.home-contact-form-card {
    background: rgba(13, 10, 3, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.06), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.home-contact-form-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="light"] .home-contact-form-card {
    background: rgba(255, 253, 245, 0.92);
    border-color: rgba(184, 134, 11, 0.25);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.1), inset 0 1px 0 rgba(255,255,255,0.7);
}

.hcf-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.hcf-om-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212,175,55,0.5);
    animation: yantra-breathe 5s ease-in-out infinite;
}

.hcf-header h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.hcf-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.home-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hcf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hcf-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hcf-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.hcf-req {
    color: #e74c3c;
    margin-left: 2px;
}

.hcf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hcf-field-icon {
    position: absolute;
    left: 13px;
    color: var(--gold-secondary);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.25s ease;
}

.hcf-input-wrap input,
.hcf-input-wrap select,
.home-contact-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 0.95rem 0.75rem 2.6rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
}

.hcf-input-wrap:focus-within .hcf-field-icon {
    color: var(--gold-primary);
}

.hcf-input-wrap input:focus,
.hcf-input-wrap select:focus,
.home-contact-form textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: rgba(212, 175, 55, 0.04);
}

[data-theme="light"] .hcf-input-wrap input,
[data-theme="light"] .hcf-input-wrap select,
[data-theme="light"] .home-contact-form textarea {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(184, 134, 11, 0.2);
    color: var(--text-primary);
}

.hcf-input-wrap select {
    appearance: none;
    cursor: pointer;
    padding-right: 2rem;
    color-scheme: dark;
}

.hcf-input-wrap select option {
    background-color: #0f0c04;
    color: #e8e0d0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.hcf-input-wrap select option:checked,
.hcf-input-wrap select option:hover {
    background-color: #2a2010;
    color: var(--gold-primary, #D4AF37);
}

[data-theme="light"] .hcf-input-wrap select {
    color-scheme: light;
}

[data-theme="light"] .hcf-input-wrap select option {
    background-color: #fffbf0;
    color: #3a2a00;
}

.hcf-select-wrap::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 13px;
    font-size: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
}

.home-contact-form textarea {
    padding: 0.75rem 0.95rem;
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.hcf-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #c8960c 100%);
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-body);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    margin-top: 0.3rem;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.hcf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.55);
}

.hcf-submit-btn:active {
    transform: scale(0.98) translateY(0);
}

.hcf-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.hcf-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

@media (max-width: 900px) {
    .home-contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .home-contact-info {
        text-align: center;
    }
    .home-contact-details li {
        justify-content: center;
    }
    .home-contact-eyebrow,
    .home-contact-hours {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hcf-row {
        grid-template-columns: 1fr;
    }
    .home-contact-form-card {
        padding: 1.8rem 1.2rem;
    }
}