/* ==========================================================================
   KARMA ASTRO VASTU — Premium Spiritual-Tech Design System
   ========================================================================== */

/* --- CSS Custom Properties / Design Tokens --- */
:root {
    --clr-primary: #B71C1C;
    --clr-primary-dark: #7f0000;
    --clr-primary-light: #e53935;
    --clr-accent: #00C853;
    --clr-accent-dark: #009624;
    --clr-gold: #D4AF37;
    --clr-gold-light: #f0d060;
    --clr-gold-dark: #a98307;
    --clr-bg: #FFF8E1;
    --clr-bg-dark: #1a0a0a;
    --clr-bg-section: #fef9ef;
    --clr-bg-alt: #2a0f0f;
    --clr-text: #2c2c2c;
    --clr-text-light: #555;
    --clr-text-muted: #888;
    --clr-white: #ffffff;
    --clr-glass: rgba(255, 255, 255, 0.08);
    --clr-glass-light: rgba(255, 255, 255, 0.85);

    --ff-heading: 'Playfair Display', Georgia, serif;
    --ff-body: 'Poppins', 'Segoe UI', sans-serif;
    --ff-hindi: 'Noto Sans Devanagari', 'Mukta', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
    --shadow-gold: 0 4px 24px rgba(212,175,55,0.25);
    --shadow-red: 0 4px 24px rgba(183,28,28,0.2);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1200px;
    --section-padding: clamp(60px, 10vw, 120px);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Cosmic Canvas --- */
#cosmic-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* --- Prefers Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .planet,
    .chakra-ring,
    .num-orb,
    .energy-pulse-ring,
    .light-ray {
        animation: none !important;
    }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 44px;
    width: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--clr-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-name {
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 0.02em;
}

.nav-logo .logo-tagline {
    font-size: 0.65rem;
    color: var(--clr-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--clr-gold);
    border-radius: 1px;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212,175,55,0.3);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(183,28,28,0.3);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(183,28,28,0.4);
    border-color: var(--clr-gold);
}

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%,
        #5a0000 0%,
        #3d0000 30%,
        #1a0000 60%,
        #0a0000 100%
    );
}

/* Hero Canvas — fullscreen behind everything */
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* --- Light Rays --- */
.light-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.light-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60vh;
    transform-origin: top center;
    background: linear-gradient(to bottom, rgba(212,175,55,0.15), transparent);
    opacity: 0;
    animation: ray-sweep 12s ease-in-out infinite;
}

.ray-1 { transform: translate(-50%, 0) rotate(-35deg); animation-delay: 0s; }
.ray-2 { transform: translate(-50%, 0) rotate(20deg); animation-delay: 3s; }
.ray-3 { transform: translate(-50%, 0) rotate(-60deg); animation-delay: 6s; }
.ray-4 { transform: translate(-50%, 0) rotate(50deg); animation-delay: 9s; }

@keyframes ray-sweep {
    0%, 100% { opacity: 0; }
    15% { opacity: 0.4; }
    50% { opacity: 0.1; }
    85% { opacity: 0.35; }
}

/* === COSMIC CHAKRA CONTAINER === */
.chakra-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(85vw, 600px);
    height: min(85vw, 600px);
    z-index: 1;
    will-change: transform;
}

/* Energy Pulse Rings */
.energy-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,0.2);
    pointer-events: none;
    animation: energy-pulse 4s ease-out infinite;
}

.pulse-1 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 0s;
    border-color: rgba(212,175,55,0.25);
}

.pulse-2 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 1.3s;
    border-color: rgba(183,28,28,0.2);
}

.pulse-3 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    animation-delay: 2.6s;
    border-color: rgba(0,200,83,0.15);
}

@keyframes energy-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(6);
        opacity: 0;
    }
}

/* --- Chakra Rings --- */
.chakra-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chakra-svg {
    width: 100%;
    height: 100%;
}

/* Outer ring — slow clockwise */
.chakra-ring-outer {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    animation: chakra-rotate-cw 80s linear infinite;
    will-change: transform;
}

/* Middle ring — medium counter-clockwise */
.chakra-ring-mid {
    width: 70%;
    height: 70%;
    margin-top: -35%;
    margin-left: -35%;
    animation: chakra-rotate-ccw 50s linear infinite;
    will-change: transform;
}

/* Inner core — faster clockwise */
.chakra-ring-inner {
    width: 40%;
    height: 40%;
    margin-top: -20%;
    margin-left: -20%;
    animation: chakra-rotate-cw 30s linear infinite;
    will-change: transform;
}

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

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

/* === NUMEROLOGY ORBITING NUMBERS === */
.numerology-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
}

.num-orb {
    position: absolute;
    top: 0;
    left: 0;
    animation: num-orbit var(--orbit-speed) linear infinite;
    animation-delay: var(--orbit-delay);
    will-change: transform;
}

.num-orb span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 200, 83, 0.08);
    border: 1.5px solid rgba(0, 200, 83, 0.35);
    font-family: var(--ff-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-accent);
    text-shadow: 0 0 12px rgba(0,200,83,0.6), 0 0 24px rgba(0,200,83,0.3);
    box-shadow: 0 0 16px rgba(0,200,83,0.15), inset 0 0 8px rgba(0,200,83,0.05);
    animation: num-pulse 3s ease-in-out infinite;
    animation-delay: var(--orbit-delay);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translate(-50%, -50%);
}

@keyframes num-orbit {
    from {
        transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
    }
}

@keyframes num-pulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 16px rgba(0,200,83,0.15), inset 0 0 8px rgba(0,200,83,0.05);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 28px rgba(0,200,83,0.35), inset 0 0 12px rgba(0,200,83,0.1);
    }
}

/* Floating Planets */
.planet {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    z-index: 2;
}

.planet-1 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 35% 35%, #f0d060, var(--clr-gold-dark));
    top: 15%;
    right: 15%;
    animation: float-planet 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(212,175,55,0.4), inset -8px -8px 16px rgba(0,0,0,0.3);
}

.planet-2 {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 35% 35%, #e0e0e0, #888);
    top: 25%;
    left: 10%;
    animation: float-planet 12s ease-in-out infinite reverse;
    box-shadow: 0 0 20px rgba(200,200,200,0.2), inset -4px -4px 8px rgba(0,0,0,0.4);
}

.planet-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 35% 35%, #e53935, #7f0000);
    bottom: 20%;
    left: 8%;
    animation: float-planet 15s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(229,57,53,0.3), inset -10px -10px 20px rgba(0,0,0,0.3);
}

.planet-3::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20%;
    width: 140%;
    height: 16px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.15), rgba(212,175,55,0.3), rgba(212,175,55,0.15), transparent);
    transform: translateY(-50%) rotateX(70deg);
    border-radius: 50%;
}

.planet-4 {
    width: 25px;
    height: 25px;
    background: radial-gradient(circle at 35% 35%, #81c784, #2e7d32);
    bottom: 30%;
    right: 12%;
    animation: float-planet 10s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0,200,83,0.3);
}

@keyframes float-planet {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-15px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container-max);
    padding: 120px 24px 80px;
    margin: 0 auto;
    pointer-events: none; /* Allow clicks to pass through to the slider controls */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    pointer-events: auto; /* Re-enable click events on the actual text & buttons */
}

.hero-text-col .sub-en {
    margin: 0 0 8px 0;
}

/* --- Hero Slider Column & Frame --- */
.hero-slider-col {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: auto;
}

.hero-slider-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 3 / 4;
    background: 
        linear-gradient(rgba(18, 6, 6, 0.55), rgba(18, 6, 6, 0.55)) padding-box,
        linear-gradient(135deg, 
            #a98307 0%, 
            #d4af37 25%, 
            #fff9d0 50%, 
            #d4af37 75%, 
            #a98307 100%
        ) border-box;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.85),
        0 0 40px rgba(212, 175, 55, 0.18),
        inset 0 0 30px rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: visible; /* Let chakra rings and orbit numbers show outside */
    z-index: 2;
    transition: transform var(--transition), box-shadow var(--transition);
}

/* Elegant Hover Lift and Glow Enhancement */
.hero-slider-frame:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(212, 175, 55, 0.3),
        inset 0 0 35px rgba(0, 0, 0, 0.95);
}

/* Premium Glass Shimmer / Gloss Sweeping Reflection */
.hero-slider-frame::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.18) 45%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.18) 55%,
        rgba(255, 255, 255, 0) 70%
    );
    border-radius: 20px;
    background-size: 250% 250%;
    background-position: -250% -250%;
    z-index: 4; /* On top of content, corners, and border */
    pointer-events: none;
    animation: luxury-shimmer 7s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes luxury-shimmer {
    0%, 10% {
        background-position: -250% -250%;
    }
    40%, 100% {
        background-position: 250% 250%;
    }
}

/* Golden corner brackets for premium frame look */
.frame-corner {
    position: absolute;
    width: 36px;
    height: 36px;
    z-index: 5; /* Above the frame's ::after shimmer */
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Corner Outer Lines with metallic gold border representation */
.corner-tl {
    top: -2px;
    left: -2px;
    border-top: 3px solid #f0d060;
    border-left: 3px solid #f0d060;
    border-top-left-radius: 20px;
}
.corner-tr {
    top: -2px;
    right: -2px;
    border-top: 3px solid #f0d060;
    border-right: 3px solid #f0d060;
    border-top-right-radius: 20px;
}
.corner-bl {
    bottom: -2px;
    left: -2px;
    border-bottom: 3px solid #f0d060;
    border-left: 3px solid #f0d060;
    border-bottom-left-radius: 20px;
}
.corner-br {
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid #f0d060;
    border-right: 3px solid #f0d060;
    border-bottom-right-radius: 20px;
}

/* Ornate Corner Inner Diamond Accent Motif */
.frame-corner::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #fff9d0, #d4af37, #a98307);
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
    z-index: 6;
}
.corner-tl::before { top: 12px; left: 12px; }
.corner-tr::before { top: 12px; right: 12px; }
.corner-bl::before { bottom: 12px; left: 12px; }
.corner-br::before { bottom: 12px; right: 12px; }

/* Deluxe Diamond-Cut Glowing Vertex Studs */
.frame-corner::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f0d060 40%, #d4af37 70%, #a98307 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 
        0 0 12px rgba(212, 175, 55, 0.95),
        0 0 6px #fff,
        0 2px 4px rgba(0, 0, 0, 0.6);
}
.corner-tl::after { top: -5px; left: -5px; }
.corner-tr::after { top: -5px; right: -5px; }
.corner-bl::after { bottom: -5px; left: -5px; }
.corner-br::after { bottom: -5px; right: -5px; }

/* Cosmic Chakra as Background of the Slider Frame */
.hero-slider-frame .chakra-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--parallax-scale, 1));
    height: 115%;
    width: auto;
    aspect-ratio: 1 / 1;
    min-width: 450px;
    min-height: 450px;
    max-width: 650px;
    max-height: 650px;
    z-index: 1; /* behind the image slider */
    pointer-events: none;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

/* --- Hero Image Slider Container (now boxed) --- */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2; /* above chakra background */
    border-radius: 10px;
    overflow: hidden;
    pointer-events: auto; /* make slider controls clickable */
}

/* Dark gradient overlay on slider images for text legibility */
.hero-slider-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 0, 0, 0.85) 0%,
        rgba(10, 0, 0, 0.4) 50%,
        rgba(10, 0, 0, 0.1) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Slide Caption Overlay (bottom banner within frame) */
.hero-slide .slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 0, 0, 0.95) 0%, rgba(10, 0, 0, 0.6) 80%, transparent 100%);
    padding: 16px 20px 24px;
    text-align: center;
    z-index: 4;
    pointer-events: none;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .slide-caption {
    transform: translateY(0);
}

.hero-slide .slide-caption h4 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    color: var(--clr-gold-light);
    margin-bottom: 4px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-slide .slide-caption p {
    font-family: var(--ff-hindi);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Smaller, framed slider navigation */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(26, 10, 10, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: var(--clr-white);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-bg-dark);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.7);
}

.hero-slider-prev {
    left: 12px;
}

.hero-slider-next {
    right: 12px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    pointer-events: auto;
}

.hero-slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.hero-slider-dot.active {
    background: var(--clr-gold);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.8);
}

/* Responsiveness media queries */
@media (max-width: 991px) {
    .hero-content {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .hero-text-col {
        order: 2;
        align-items: center;
        text-align: center;
        pointer-events: auto;
    }
    
    .hero-slider-col {
        order: 1;
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-slider-frame {
        max-width: 440px;
        aspect-ratio: 3 / 4;
    }
    
    .hero-slider-frame .chakra-container {
        height: 115%;
        width: auto;
        aspect-ratio: 1 / 1;
        min-width: 320px;
        min-height: 320px;
    }

    .hero-text-col .hero-title {
        text-align: center;
    }
    
    .hero-text-col .hero-subtitle {
        text-align: center;
    }
    
    .hero-text-col .hero-cta-group {
        justify-content: center;
    }
    
    .hero-text-col .sub-en {
        margin: 0 auto 8px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-slider-frame {
        max-width: 100%;
        aspect-ratio: 3 / 4;
        border-radius: 12px;
        padding: 6px;
    }

    .hero-slider-container {
        border-radius: 6px;
    }

    .frame-corner {
        width: 20px;
        height: 20px;
        filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
    }

    .corner-tl { top: -2px; left: -2px; border-top: 2px solid #f0d060; border-left: 2px solid #f0d060; border-top-left-radius: 12px; }
    .corner-tr { top: -2px; right: -2px; border-top: 2px solid #f0d060; border-right: 2px solid #f0d060; border-top-right-radius: 12px; }
    .corner-bl { bottom: -2px; left: -2px; border-bottom: 2px solid #f0d060; border-left: 2px solid #f0d060; border-bottom-left-radius: 12px; }
    .corner-br { bottom: -2px; right: -2px; border-bottom: 2px solid #f0d060; border-right: 2px solid #f0d060; border-bottom-right-radius: 12px; }

    .frame-corner::before {
        width: 4px;
        height: 4px;
        box-shadow: 0 0 3px rgba(212, 175, 55, 0.8);
    }
    .corner-tl::before { top: 6px; left: 6px; }
    .corner-tr::before { top: 6px; right: 6px; }
    .corner-bl::before { bottom: 6px; left: 6px; }
    .corner-br::before { bottom: 6px; right: 6px; }

    .frame-corner::after {
        width: 5px;
        height: 5px;
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.8), 0 0 3px #fff;
    }
    .corner-tl::after { top: -3px; left: -3px; }
    .corner-tr::after { top: -3px; right: -3px; }
    .corner-bl::after { bottom: -3px; left: -3px; }
    .corner-br::after { bottom: -3px; right: -3px; }
    
    .hero-slider-frame .chakra-container {
        height: 115%;
        width: auto;
        aspect-ratio: 1 / 1;
        min-width: 280px;
        min-height: 280px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .hero-slider-prev {
        left: 8px;
    }
    
    .hero-slider-next {
        right: 8px;
    }
    
    .hero-slider-dots {
        bottom: 6px;
    }
    
    .hero-slide .slide-caption {
        padding: 8px 12px 14px;
    }

    .hero-slide .slide-caption h4 {
        font-size: 1.0rem;
        margin-bottom: 2px;
    }

    .hero-slide .slide-caption p {
        font-size: 0.75rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--clr-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--clr-gold);
    font-size: 0.6rem;
}

.hero-title {
    margin-bottom: 28px;
}

.title-en {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.gradient-text {
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold), var(--clr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3));
}

.title-hi {
    display: block;
    font-family: var(--ff-hindi);
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.6;
}

.hero-subtitle {
    margin-bottom: 40px;
}

.sub-en {
    display: block;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto 8px;
    line-height: 1.7;
}

.sub-hi {
    display: block;
    font-family: var(--ff-hindi);
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    border: 2px solid rgba(212,175,55,0.4);
    box-shadow: 0 4px 20px rgba(183,28,28,0.35), 0 0 40px rgba(183,28,28,0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(183,28,28,0.45), 0 0 60px rgba(183,28,28,0.2);
    border-color: var(--clr-gold);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--clr-white);
    border: 2px solid rgba(37,211,102,0.3);
    box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37,211,102,0.4), 0 0 40px rgba(37,211,102,0.15);
    border-color: rgba(255,255,255,0.3);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--clr-white);
    border: 2px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Hero Phone Number */
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(0, 200, 83, 0.08);
    border: 2px solid rgba(0, 200, 83, 0.25);
    border-radius: 60px;
    transition: all var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-phone:hover {
    background: rgba(0, 200, 83, 0.15);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.2);
}

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

.phone-number {
    font-family: var(--ff-body);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--clr-accent);
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.5), 0 0 40px rgba(0, 200, 83, 0.3);
    letter-spacing: 0.05em;
}

.phone-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 60px;
    border: 2px solid var(--clr-accent);
    opacity: 0;
    animation: phone-pulse 2s ease-out infinite;
}

.phone-pulse-2 {
    animation-delay: 1s;
}

@keyframes phone-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.2); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 3;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(212,175,55,0.5);
    border-bottom: 2px solid rgba(212,175,55,0.5);
    transform: rotate(45deg);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ==========================================================================
   SECTION HEADERS (Shared)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--clr-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--ff-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--clr-text);
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-subtitle-hi {
    font-family: var(--ff-hindi);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--clr-text-muted);
    margin-bottom: 16px;
}

.title-ornament {
    width: 80px;
    height: 3px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
    border-radius: 2px;
}

/* Dark sections override */
.services-section .section-title,
.process-section .section-title,
.testimonials-section .section-title {
    color: var(--clr-white);
}

.services-section .section-tag,
.process-section .section-tag,
.testimonials-section .section-tag {
    color: var(--clr-gold);
}

.services-section .section-subtitle-hi,
.process-section .section-subtitle-hi,
.testimonials-section .section-subtitle-hi {
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
    position: relative;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-frame {
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: calc(var(--radius-lg) + 6px);
    pointer-events: none;
}

.about-exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--ff-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    line-height: 1.3;
}

.about-content-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-text-en {
    font-size: 1.05rem;
    color: var(--clr-text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-text-hi {
    font-family: var(--ff-hindi);
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

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

.about-feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-gold);
}

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

.about-feature-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 2px;
}

.about-feature-card p {
    font-family: var(--ff-hindi);
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #1a0a0a 0%, #2a0f0f 50%, #1a0a0a 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;
    padding: 36px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all var(--transition);
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-gold);
    box-shadow: 0 20px 50px rgba(212,175,55,0.12), 0 0 40px rgba(183,28,28,0.08);
    background: rgba(255,255,255,0.07);
}

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

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

.service-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 2.2rem;
    z-index: 1;
    position: relative;
}

.service-icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212,175,55,0.2);
    border-radius: 50%;
    animation: icon-ring-pulse 3s ease-in-out infinite;
}

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

.service-title {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-title-hi {
    font-family: var(--ff-hindi);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--clr-gold);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.5;
}

.list-bullet {
    color: var(--clr-gold);
    font-size: 0.6rem;
    flex-shrink: 0;
}

.list-hi {
    font-family: var(--ff-hindi);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* Numerology green glow */
.numerology-glow {
    filter: drop-shadow(0 0 8px rgba(0,200,83,0.5));
}

.num-glow {
    color: var(--clr-accent) !important;
    text-shadow: 0 0 10px rgba(0,200,83,0.5);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-gold);
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.service-cta:hover {
    border-bottom-color: var(--clr-gold);
    transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-section {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.why-card {
    padding: 32px 28px;
    background: var(--clr-white);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-gold);
}

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

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.why-hi {
    font-family: var(--ff-hindi);
    font-size: 0.85rem;
    color: var(--clr-gold-dark);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   CONSULTATION PROCESS
   ========================================================================== */
.process-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #1a0a0a, #2a0f0f);
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-gold), rgba(212,175,55,0.1));
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border: 2px solid rgba(212,175,55,0.4);
    box-shadow: 0 0 30px rgba(183,28,28,0.3);
    z-index: 1;
}

.step-number span {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.step-content {
    flex: 1;
    padding: 20px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.step-content:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(212,175,55,0.3);
    transform: translateX(8px);
    box-shadow: var(--shadow-gold);
}

.step-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.step-content h4 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.step-hi {
    font-family: var(--ff-hindi);
    font-size: 0.85rem;
    color: var(--clr-gold);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #1e0c0c, #1a0a0a);
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.testimonial-stars {
    color: var(--clr-gold);
    font-size: 1.3rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.testimonial-text {
    font-family: var(--ff-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--clr-white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 16px;
    border: none;
    padding: 0;
}

.testimonial-text-hi {
    font-family: var(--ff-hindi);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
    border: 2px solid rgba(212,175,55,0.3);
}

.testimonial-author strong {
    display: block;
    color: var(--clr-white);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--clr-gold);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--clr-gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: var(--clr-gold);
    transform: scale(1.08);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(212,175,55,0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.slider-dot.active {
    background: var(--clr-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
    transform: scale(1.2);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--clr-bg);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    padding: 36px;
    background: linear-gradient(135deg, #1a0a0a, #2a0f0f);
    border-radius: var(--radius-lg);
    color: var(--clr-white);
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    font-family: var(--ff-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-hi {
    font-family: var(--ff-hindi);
    font-size: 0.9rem;
    color: var(--clr-gold);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-detail:last-of-type {
    border-bottom: none;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2px;
}

.contact-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-accent) !important;
    text-shadow: 0 0 15px rgba(0, 200, 83, 0.4), 0 0 30px rgba(0, 200, 83, 0.2);
    transition: all var(--transition);
}

.contact-phone:hover {
    text-shadow: 0 0 20px rgba(0, 200, 83, 0.6), 0 0 40px rgba(0, 200, 83, 0.3);
}

.contact-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.contact-cta-box {
    margin-top: 28px;
    padding: 24px;
    background: rgba(183,28,28,0.15);
    border: 1px solid rgba(183,28,28,0.25);
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-cta-box p {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-cta-hi {
    font-family: var(--ff-hindi);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5) !important;
    margin-bottom: 16px !important;
}

.contact-call-btn {
    width: 100%;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    padding: 40px;
    background: var(--clr-white);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 6px;
}

.required {
    color: var(--clr-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0d5c0;
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 0.95rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

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

.form-submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #0a0505;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* Logo styling is handled globally by .logo-img */

.footer-logo .logo-name {
    font-family: var(--ff-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-services-list {
    font-size: 0.8rem;
    color: var(--clr-gold);
    letter-spacing: 0.05em;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--ff-heading);
    font-size: 1rem;
    color: var(--clr-white);
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--clr-gold);
    transform: translateX(4px);
    display: inline-block;
}

.footer-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-accent) !important;
    text-shadow: 0 0 15px rgba(0,200,83,0.4);
    margin-bottom: 10px;
    transition: all var(--transition);
}

.footer-phone:hover {
    text-shadow: 0 0 25px rgba(0,200,83,0.6);
}

.footer-location {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-dark);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

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

.floating-call {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(183,28,28,0.4);
    transition: all var(--transition);
    display: none;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(183,28,28,0.5);
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.services-grid .service-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.3s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.4s; }

.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.15s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.25s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.3s; }

.process-step:nth-child(3) { transition-delay: 0.1s; }
.process-step:nth-child(4) { transition-delay: 0.2s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(26, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right var(--transition);
        border-left: 1px solid rgba(212,175,55,0.15);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-cta-btn {
        text-align: center;
        margin-top: 16px;
    }

    .hero-content {
        padding: 100px 16px 60px;
    }

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

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

    .timeline-line {
        left: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-number span {
        font-size: 1.4rem;
    }

    .process-step {
        gap: 20px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .floating-call {
        display: flex;
    }

    .floating-whatsapp {
        bottom: 96px;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-phone {
        width: 100%;
        justify-content: center;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 24px;
    }
}

/* ==========================================================================
   GALLERY SECTION & LIGHTBOX STYLES
   ========================================================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #2a0f0f, #1e0c0c);
    position: relative;
    z-index: 1;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--clr-white);
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--ff-body);
}

.filter-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--clr-red) 0%, #d82c2c 100%);
    border-color: var(--clr-gold);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(183, 28, 28, 0.4), 0 0 0 1px var(--clr-gold);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.4s ease, 
                box-shadow 0.4s ease;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.gallery-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 10, 10, 0.95) 0%, rgba(183, 28, 28, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--clr-gold);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.gallery-item-info {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item-cat {
    font-size: 0.75rem;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.gallery-item-info h4 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    color: var(--clr-white);
    margin-bottom: 4px;
    font-weight: 600;
}

.gallery-item-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(183, 28, 28, 0.25);
    border-color: rgba(212, 175, 55, 0.25);
}

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

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

.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

/* --- LIGHTBOX MODAL --- */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 4, 4, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--clr-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--clr-gold);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--clr-white);
    font-size: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.lightbox-prev {
    left: 32px;
}

.lightbox-next {
    right: 32px;
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: zoom-in-lightbox 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoom-in-lightbox {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin-top: 16px;
    text-align: center;
    color: var(--clr-white);
    font-family: var(--ff-heading);
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.lightbox-caption p {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--clr-gold);
    margin-top: 4px;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .lightbox-close { right: 20px; top: 15px; }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   GOOGLE MAPS CONTAINER STYLING
   ========================================================================== */
.contact-map-container {
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-lg);
    height: 400px;
    width: 100%;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2);
    border: 0;
}

@media (max-width: 768px) {
    .contact-map-container {
        height: 280px;
        margin-top: 32px;
    }
}

/* ==========================================================================
   SACRED VIDEO INSIGHTS GALLERY STYLES
   ========================================================================== */
.video-insights-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #1e0c0c, #130707);
    position: relative;
    z-index: 1;
}

.video-player-layout {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    align-items: flex-start;
}

/* Featured Video Column */
.video-featured-col {
    flex: 0 0 65%;
    width: 65%;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: visible; /* Let frame elements show slightly outside */
    background: 
        linear-gradient(rgba(18, 6, 6, 0.65), rgba(18, 6, 6, 0.65)) padding-box,
        linear-gradient(135deg, 
            #a98307 0%, 
            #d4af37 25%, 
            #fff9d0 50%, 
            #d4af37 75%, 
            #a98307 100%
        ) border-box;
    border: 2px solid transparent;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* Custom Play Overlay */
.video-overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 14px;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.video-overlay-play.playing {
    opacity: 0;
    pointer-events: none;
}

.play-btn-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 0 10px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: play-pulse 2s infinite;
}

.video-overlay-play:hover .play-btn-circle {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.8),
        0 0 0 15px rgba(212, 175, 55, 0.3);
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #1a0a0a;
    margin-left: 5px; /* Offset to center triangle visually */
}

@keyframes play-pulse {
    0% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 0 0px rgba(212, 175, 55, 0.2);
    }
    70% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 0 0px rgba(212, 175, 55, 0);
    }
}

/* Video Info */
.featured-video-info {
    margin-top: 24px;
}

.video-info-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--clr-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.featured-video-info h3 {
    font-family: var(--ff-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.video-desc-hi {
    font-family: var(--ff-hindi);
    font-size: 1.1rem;
    color: var(--clr-gold-light);
    margin-bottom: 12px;
}

.video-desc-en {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Playlist Navigation Column */
.video-playlist-col {
    flex: 0 0 35%;
    width: 35%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 520px; /* Aligns roughly with player height on large screens */
}

.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.playlist-header h4 {
    font-family: var(--ff-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-white);
}

.playlist-count {
    font-size: 0.8rem;
    color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.playlist-scroll-container {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 8px;
}

/* Custom scrollbar for playlist container */
.playlist-scroll-container::-webkit-scrollbar {
    width: 5px;
}
.playlist-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}
.playlist-scroll-container::-webkit-scrollbar-thumb {
    background: var(--clr-gold-dark);
    border-radius: 4px;
}
.playlist-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--clr-gold);
}

/* Playlist Card */
.playlist-card {
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
}

.playlist-card:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.playlist-card.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--clr-gold);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.15);
}

.playlist-thumbnail-wrapper {
    position: relative;
    width: 100px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
}

.playlist-thumbnail-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.playlist-card:hover .playlist-thumbnail-wrapper video,
.playlist-card.active .playlist-thumbnail-wrapper video {
    opacity: 0.95;
}

.playlist-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--clr-gold);
    font-size: 0.9rem;
    background: rgba(26, 10, 10, 0.85);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-gold);
    transition: all 0.3s ease;
}

.playlist-card:hover .playlist-play-icon {
    background: var(--clr-gold);
    color: #1a0a0a;
    transform: translate(-50%, -50%) scale(1.1);
}

.playlist-info {
    flex: 1;
}

.playlist-card-tag {
    display: inline-block;
    color: var(--clr-gold);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.playlist-info h5 {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 2px;
    line-height: 1.3;
}

.playlist-info p {
    font-family: var(--ff-hindi);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

.playlist-card.active .playlist-info p {
    color: var(--clr-gold-light);
}

/* Video Frame Corners (Featured Player) */
.video-frame-corners {
    pointer-events: none;
}

.video-frame-corners .video-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.video-frame-corners .corner-tl {
    top: -2px;
    left: -2px;
    border-top: 3px solid #f0d060;
    border-left: 3px solid #f0d060;
    border-top-left-radius: 16px;
}
.video-frame-corners .corner-tr {
    top: -2px;
    right: -2px;
    border-top: 3px solid #f0d060;
    border-right: 3px solid #f0d060;
    border-top-right-radius: 16px;
}
.video-frame-corners .corner-bl {
    bottom: -2px;
    left: -2px;
    border-bottom: 3px solid #f0d060;
    border-left: 3px solid #f0d060;
    border-bottom-left-radius: 16px;
}
.video-frame-corners .corner-br {
    bottom: -2px;
    right: -2px;
    border-bottom: 3px solid #f0d060;
    border-right: 3px solid #f0d060;
    border-bottom-right-radius: 16px;
}

.video-frame-corners .video-corner::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #fff9d0, #d4af37, #a98307);
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
    z-index: 6;
}
.video-frame-corners .corner-tl::before { top: 8px; left: 8px; }
.video-frame-corners .corner-tr::before { top: 8px; right: 8px; }
.video-frame-corners .corner-bl::before { bottom: 8px; left: 8px; }
.video-frame-corners .corner-br::before { bottom: 8px; right: 8px; }

.video-frame-corners .video-corner::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #f0d060 40%, #d4af37 70%, #a98307 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.95), 0 0 4px #fff, 0 1px 3px rgba(0, 0, 0, 0.6);
}
.video-frame-corners .corner-tl::after { top: -4px; left: -4px; }
.video-frame-corners .corner-tr::after { top: -4px; right: -4px; }
.video-frame-corners .corner-bl::after { bottom: -4px; left: -4px; }
.video-frame-corners .corner-br::after { bottom: -4px; right: -4px; }

/* Responsive adjustments for video Insights */
@media (max-width: 992px) {
    .video-player-layout {
        flex-direction: column;
        align-items: stretch;
    }
    
    .video-featured-col, 
    .video-playlist-col {
        width: 100%;
        flex: 1 1 auto;
    }
    
    .video-playlist-col {
        height: auto;
        max-height: 480px;
    }
}

@media (max-width: 576px) {
    .video-player-wrapper {
        border-radius: 12px;
    }
    .video-player-wrapper video {
        border-radius: 10px;
    }
    .video-frame-corners .corner-tl { border-top-left-radius: 12px; }
    .video-frame-corners .corner-tr { border-top-right-radius: 12px; }
    .video-frame-corners .corner-bl { border-bottom-left-radius: 12px; }
    .video-frame-corners .corner-br { border-bottom-right-radius: 12px; }
    
    .featured-video-info h3 {
        font-size: 1.4rem;
    }
    
    .video-desc-hi {
        font-size: 1.0rem;
    }
    
    .video-desc-en {
        font-size: 0.85rem;
    }
    
    .playlist-card {
        padding: 8px;
    }
    
    .playlist-thumbnail-wrapper {
        width: 80px;
        height: 45px;
    }
}

/* ==========================================================================
   HEADER UTILITY CONTACT BAR
   ========================================================================== */
.navbar {
    display: flex;
    flex-direction: column;
}

.nav-contact-bar {
    width: 100%;
    background: rgba(18, 6, 6, 0.55);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 6px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow: hidden;
    height: 34px;
}

.nav-contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-contact-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--clr-gold-light);
}

.contact-icon {
    width: 14px;
    height: 14px;
    color: var(--clr-gold);
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.nav-contact-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.social-link svg {
    width: 15px;
    height: 15px;
}

.social-link:hover {
    transform: scale(1.15);
}

.whatsapp-color:hover {
    color: #25D366;
}

.instagram-color:hover {
    color: #E1306C;
}

/* Scroll Collapse Transitions */
.navbar.scrolled .nav-contact-bar {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    border-bottom-color: transparent;
    pointer-events: none;
}

@media (max-width: 576px) {
    #header-map-link span {
        display: none;
    }
    .nav-contact-left {
        gap: 12px;
    }
    .contact-item {
        font-size: 0.75rem;
    }
}
