:root {
    /* === VEDIC MAROON & GOLD PALETTE -> UNIFIED LIGHT THEME === */
    /* Mapped from Landing Page (#FBF3E4, #3E2723) */

    --bg-cosmic: #FBF3E4;
    /* Cream Background (Main) */
    --bg-deeper: #F3E5D0;
    /* Slightly darker cream for sections */

    --primary: #3E2723;
    /* Dark Warm Brown (Primary Actions/Headings) */
    --secondary: #5D4037;
    /* Lighter Brown */

    --accent: #3E2723;
    /* Dark Brown (Replacing Gold for Headings) */
    --copper: #8D6E63;
    /* Muted Brown accent */

    --text-main: #3D2B1F;
    /* Deepest Brown (Body Text) */
    --text-muted: #5D4037;
    /* Muted Brown */

    --glass: rgba(255, 255, 255, 0.55);
    /* Light Glass */

    /* Fonts remain the same */
    --font-header: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-sanskrit: 'Noto Sans Devanagari', sans-serif;
    --font-mystical: 'Cormorant Garamond', serif;

    /* Updated Gradients for Light Theme */
    --gold-gradient: linear-gradient(135deg, #8D6E63 0%, #3E2723 100%);
    --fire-glow: rgba(62, 39, 35, 0.15);
    --spiritual-glow: 0 0 30px rgba(62, 39, 35, 0.1);

    /* Original Landing Vars (kept for compatibility, though mapped above) */
    --bg-landing: #FBF3E4;
    --text-on-light: #3D2B1F;
    --surface-landing-glass: rgba(255, 255, 255, 0.55);
    --surface-landing-glass-hover: rgba(255, 255, 255, 0.65);
    --border-landing: rgba(61, 43, 31, 0.12);

    /* Landing Page Section-Specific Variables */
    --lp-bg: #FBF3E4;
    --lp-heading: #3E2723;
    --lp-text: #3D2B1F;
    --lp-on-surface-muted: #5D4037;
    --lp-surface: rgba(255, 255, 255, 0.65);
    --lp-surface-alt: rgba(243, 229, 208, 0.45);
    --lp-border: rgba(62, 39, 35, 0.08);
    --lp-glow: rgba(62, 39, 35, 0.04);
    --lp-glow-hover: rgba(62, 39, 35, 0.12);
    --font-primary-color: #3E2723;
    --font-secondary-color: #8D6E63;
    --font-accent-color: #D2691E;

    --gold-gradient-text: linear-gradient(135deg, #EE7C1E 0%, #B8860B 50%, #E2D8C7 100%);
}

.text-gold-gradient {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cosmic);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Landing page only: overall background color */
body.page-home {
    background-color: var(--bg-landing);
}

/* Landing page only: replace cosmic background with solid color */
body.page-home .global-cosmic-bg {
    background: var(--bg-landing);
}

/* Landing page only: keep moving stars across the whole page
   (background stays strictly #FBF5E8; stars are subtle + monochrome) */
body.page-home .global-cosmic-bg .deep-space {
    background: var(--bg-landing);
}

body.page-home .global-cosmic-bg .starfield-far {
    opacity: 0.20;
    background-image:
        radial-gradient(1px 1px at 10px 10px, rgba(0, 0, 0, 0.28) 50%, transparent 50%),
        radial-gradient(1px 1px at 50px 30px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 100px 60px, rgba(0, 0, 0, 0.20) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 20px, rgba(0, 0, 0, 0.24) 50%, transparent 50%),
        radial-gradient(1px 1px at 200px 80px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 250px 40px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 300px 90px, rgba(0, 0, 0, 0.20) 50%, transparent 50%),
        radial-gradient(1px 1px at 350px 15px, rgba(0, 0, 0, 0.22) 50%, transparent 50%);
}

body.page-home .global-cosmic-bg .starfield-mid {
    opacity: 0.26;
    background-image:
        radial-gradient(2px 2px at 20px 50px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 100px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 140px 30px, rgba(0, 0, 0, 0.20) 50%, transparent 50%),
        radial-gradient(2px 2px at 200px 70px, rgba(0, 0, 0, 0.20) 50%, transparent 50%),
        radial-gradient(2px 2px at 260px 120px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(2px 2px at 320px 45px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 380px 85px, rgba(0, 0, 0, 0.18) 50%, transparent 50%);
}

body.page-home .global-cosmic-bg .starfield-near {
    opacity: 0.30;
    background-image:
        radial-gradient(3px 3px at 30px 80px, rgba(0, 0, 0, 0.20) 50%, transparent 50%),
        radial-gradient(3px 3px at 120px 40px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(4px 4px at 220px 110px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(3px 3px at 330px 25px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(4px 4px at 450px 75px, rgba(0, 0, 0, 0.16) 50%, transparent 50%);
}

/* Disable colorful nebula/waves on landing to keep background strictly #F8E0C1 */
body.page-home .global-cosmic-bg .nebula,
body.page-home .global-cosmic-bg .energy-wave {
    opacity: 0;
}

body.page-home .global-cosmic-bg .cosmic-dust {
    opacity: 0.10;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 60px 80px, rgba(0, 0, 0, 0.14) 50%, transparent 50%),
        radial-gradient(1px 1px at 110px 20px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(1px 1px at 170px 60px, rgba(0, 0, 0, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 230px 90px, rgba(0, 0, 0, 0.14) 50%, transparent 50%),
        radial-gradient(1px 1px at 290px 35px, rgba(0, 0, 0, 0.13) 50%, transparent 50%);
}

/* === GLOBAL FIXED COSMIC BACKGROUND === */
/* === GLOBAL FIXED COSMIC BACKGROUND (LIGHT THEME) === */
.global-cosmic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cosmic);
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.global-cosmic-bg .deep-space {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-cosmic);
}

.global-cosmic-bg .starfield-far {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.20;
    background-image:
        radial-gradient(1px 1px at 10px 10px, rgba(60, 40, 30, 0.28) 50%, transparent 50%),
        radial-gradient(1px 1px at 50px 30px, rgba(60, 40, 30, 0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 100px 60px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 20px, rgba(60, 40, 30, 0.24) 50%, transparent 50%),
        radial-gradient(1px 1px at 200px 80px, rgba(60, 40, 30, 0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 250px 40px, rgba(60, 40, 30, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 300px 90px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(1px 1px at 350px 15px, rgba(60, 40, 30, 0.22) 50%, transparent 50%);
    background-size: 400px 120px;
    animation: travel-stars 120s linear infinite;
}

.global-cosmic-bg .starfield-mid {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.26;
    background-image:
        radial-gradient(2px 2px at 20px 50px, rgba(60, 40, 30, 0.22) 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 100px, rgba(60, 40, 30, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 140px 30px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(2px 2px at 200px 70px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(2px 2px at 260px 120px, rgba(60, 40, 30, 0.16) 50%, transparent 50%),
        radial-gradient(2px 2px at 320px 45px, rgba(60, 40, 30, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 380px 85px, rgba(60, 40, 30, 0.18) 50%, transparent 50%);
    background-size: 450px 150px;
    animation: travel-stars 80s linear infinite;
}

.global-cosmic-bg .starfield-near {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.30;
    background-image:
        radial-gradient(3px 3px at 30px 80px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(3px 3px at 120px 40px, rgba(60, 40, 30, 0.16) 50%, transparent 50%),
        radial-gradient(4px 4px at 220px 110px, rgba(60, 40, 30, 0.18) 50%, transparent 50%),
        radial-gradient(3px 3px at 330px 25px, rgba(60, 40, 30, 0.16) 50%, transparent 50%),
        radial-gradient(4px 4px at 450px 75px, rgba(60, 40, 30, 0.16) 50%, transparent 50%);
    background-size: 550px 140px;
    animation: travel-stars 50s linear infinite;
}

/* Disable colorful nebula/waves for light theme cleanliness */
.global-cosmic-bg .nebula,
.global-cosmic-bg .energy-wave {
    display: none;
}

.global-cosmic-bg .cosmic-dust {
    position: absolute;
    width: 300%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(60, 40, 30, 0.15) 50%, transparent 50%),
        radial-gradient(1px 1px at 60px 80px, rgba(60, 40, 30, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 110px 20px, rgba(60, 40, 30, 0.14) 50%, transparent 50%),
        radial-gradient(1px 1px at 170px 60px, rgba(60, 40, 30, 0.10) 50%, transparent 50%),
        radial-gradient(1px 1px at 230px 90px, rgba(60, 40, 30, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 290px 35px, rgba(60, 40, 30, 0.11) 50%, transparent 50%);
    background-size: 350px 110px;
    animation: dust-float 35s linear infinite;
    opacity: 0.35;
}

/* --- Global Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1A0A0B;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-header);
    color: var(--accent);
}

/* --- Typography --- */
.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

/* Spiritual Sanskrit Typography */
.text-sanskrit {
    font-family: var(--font-sanskrit);
    letter-spacing: 5px;
    color: var(--copper);
}

.text-mystical {
    font-family: var(--font-mystical);
    font-style: italic;
    color: var(--text-muted);
}

.text-glow-gold {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Spiritual Decorative Elements */
.vedic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    color: var(--accent);
    opacity: 0.5;
}

.vedic-divider::before,
.vedic-divider::after {
    content: '';
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* Om Symbol Styling */
.om-symbol {
    font-family: var(--font-sanskrit);
    color: var(--accent);
    text-shadow: var(--spiritual-glow);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
}

/* Primary Button - Saffron Fire Gradient */
/* Primary Button - Dark Brown */
.btn-primary {
    background: #3E2723;
    color: #FFF;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #4E342E;
    box-shadow: 0 8px 30px rgba(62, 39, 35, 0.4);
}

/* Saffron Pulse -> Copper Pulse for Light Theme */
.btn-saffron-pulse {
    background: #8D6E63;
    color: #FFF;
    font-weight: 700;
    border: none;
    animation: pulse-fire 2s infinite;
}

@keyframes pulse-fire {
    0% {
        box-shadow: 0 0 0 0 rgba(141, 110, 99, 0.6);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(141, 110, 99, 0.3);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(141, 110, 99, 0.6);
    }
}

/* Gold Outline Button -> Brown Outline */
.btn-gold {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent);
    color: #FFF;
    box-shadow: 0 0 20px rgba(62, 39, 35, 0.2);

}

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #FFF;
}

/* Glassmorphism - Light */
.glass-panel {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 15px;
}

/* --- Light Glass Utility --- */
.glass-effect {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(61, 43, 31, 0.15);
    box-shadow: 0 8px 32px 0 rgba(61, 43, 31, 0.05);
}

/* --- Magic Cursor --- */
.magic-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 215, 0, 0.6);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.05s linear;
}

/* === THE MOVING COSMIC UNIVERSE === */
.cosmic-void {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1A0A0B;
    overflow: hidden;
    z-index: 0;
}

/* Deep space gradient base */
.deep-space {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(80, 20, 25, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(60, 15, 15, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(40, 15, 20, 0.5) 0%, transparent 70%),
        linear-gradient(180deg, #1A0A0B 0%, #2C0E0F 50%, #1A0A0B 100%);
}

/* === TRAVELING STAR FIELDS === */
/* Far stars - slowest, smallest */
.starfield-far {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(1px 1px at 10px 10px, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 50px 30px, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 100px 60px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 20px, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 200px 80px, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 250px 40px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 300px 90px, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 350px 15px, rgba(255, 255, 255, 0.5) 50%, transparent 50%);
    background-size: 400px 120px;
    animation: travel-stars 120s linear infinite;
    opacity: 0.8;
}

/* Mid stars - medium speed */
.starfield-mid {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(2px 2px at 20px 50px, #FFD700 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 100px, #fff 50%, transparent 50%),
        radial-gradient(2px 2px at 140px 30px, #B87333 50%, transparent 50%),
        radial-gradient(2px 2px at 200px 70px, #FFD700 50%, transparent 50%),
        radial-gradient(2px 2px at 260px 120px, #fff 50%, transparent 50%),
        radial-gradient(2px 2px at 320px 45px, #B87333 50%, transparent 50%),
        radial-gradient(2px 2px at 380px 85px, #FFD700 50%, transparent 50%);
    background-size: 450px 150px;
    animation: travel-stars 80s linear infinite;
    opacity: 0.9;
}

/* Near stars - fastest, largest, brightest */
.starfield-near {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(3px 3px at 30px 80px, #FFD700 50%, transparent 50%),
        radial-gradient(3px 3px at 120px 40px, #fff 50%, transparent 50%),
        radial-gradient(4px 4px at 220px 110px, #FFD700 50%, transparent 50%),
        radial-gradient(3px 3px at 330px 25px, #B87333 50%, transparent 50%),
        radial-gradient(4px 4px at 450px 75px, #FFD700 50%, transparent 50%);
    background-size: 550px 140px;
    animation: travel-stars 50s linear infinite, twinkle-field 3s ease-in-out infinite alternate;
}

@keyframes travel-stars {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

@keyframes twinkle-field {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* === NEBULA CLOUDS === */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.nebula-1 {
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse, rgba(120, 20, 30, 0.4) 0%, rgba(80, 10, 15, 0.2) 40%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: nebula-drift-1 45s ease-in-out infinite;
}

.nebula-2 {
    width: 50vw;
    height: 50vh;
    background: radial-gradient(ellipse, rgba(255, 150, 50, 0.15) 0%, rgba(200, 100, 30, 0.1) 40%, transparent 70%);
    bottom: 10%;
    right: -15%;
    animation: nebula-drift-2 60s ease-in-out infinite;
}

.nebula-3 {
    width: 70vw;
    height: 40vh;
    background: radial-gradient(ellipse, rgba(100, 15, 20, 0.3) 0%, rgba(60, 5, 10, 0.15) 50%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: nebula-drift-3 55s ease-in-out infinite;
}

@keyframes nebula-drift-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(5%, 8%) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(10%, 3%) scale(1.05);
        opacity: 0.7;
    }

    75% {
        transform: translate(3%, -5%) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes nebula-drift-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    33% {
        transform: translate(-8%, 5%) rotate(3deg);
        opacity: 0.7;
    }

    66% {
        transform: translate(-3%, -8%) rotate(-2deg);
        opacity: 0.6;
    }
}

@keyframes nebula-drift-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10%, 5%) scale(1.15);
    }
}

/* === COSMIC DUST === */
.cosmic-dust {
    position: absolute;
    width: 300%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 215, 0, 0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 60px 80px, rgba(255, 200, 150, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 110px 20px, rgba(255, 215, 0, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 170px 60px, rgba(200, 180, 150, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 230px 90px, rgba(255, 215, 0, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 290px 35px, rgba(255, 180, 100, 0.7) 50%, transparent 50%);
    background-size: 350px 110px;
    animation: dust-float 35s linear infinite;
    opacity: 0.6;
}

@keyframes dust-float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-33.33%) translateY(-5%);
    }
}

/* === GOLDEN ENERGY WAVE === */
.energy-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 215, 0, 0.03) 25%,
            rgba(255, 153, 51, 0.05) 50%,
            rgba(255, 215, 0, 0.03) 75%,
            transparent 100%);
    animation: energy-pulse 20s ease-in-out infinite;
    left: -100%;
}

@keyframes energy-pulse {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(25%);
        opacity: 0.6;
    }

    100% {
        transform: translateX(50%);
        opacity: 0.3;
    }
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    max-width: 700px;
    opacity: 0.6;
    animation: rotate-geometry 90s linear infinite;
    z-index: 2;
}

@keyframes travel-stars {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

@keyframes twinkle-field {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* === NEBULA CLOUDS === */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.nebula-1 {
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse, rgba(120, 20, 30, 0.4) 0%, rgba(80, 10, 15, 0.2) 40%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: nebula-drift-1 45s ease-in-out infinite;
}

.nebula-2 {
    width: 50vw;
    height: 50vh;
    background: radial-gradient(ellipse, rgba(255, 150, 50, 0.15) 0%, rgba(200, 100, 30, 0.1) 40%, transparent 70%);
    bottom: 10%;
    right: -15%;
    animation: nebula-drift-2 60s ease-in-out infinite;
}

.nebula-3 {
    width: 70vw;
    height: 40vh;
    background: radial-gradient(ellipse, rgba(100, 15, 20, 0.3) 0%, rgba(60, 5, 10, 0.15) 50%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: nebula-drift-3 55s ease-in-out infinite;
}

@keyframes nebula-drift-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(5%, 8%) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(10%, 3%) scale(1.05);
        opacity: 0.7;
    }

    75% {
        transform: translate(3%, -5%) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes nebula-drift-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }

    33% {
        transform: translate(-8%, 5%) rotate(3deg);
        opacity: 0.7;
    }

    66% {
        transform: translate(-3%, -8%) rotate(-2deg);
        opacity: 0.6;
    }
}

@keyframes nebula-drift-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10%, 5%) scale(1.15);
    }
}

/* === COSMIC DUST === */
.cosmic-dust {
    position: absolute;
    width: 300%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(255, 215, 0, 0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 60px 80px, rgba(255, 200, 150, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 110px 20px, rgba(255, 215, 0, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 170px 60px, rgba(200, 180, 150, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 230px 90px, rgba(255, 215, 0, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 290px 35px, rgba(255, 180, 100, 0.7) 50%, transparent 50%);
    background-size: 350px 110px;
    animation: dust-float 35s linear infinite;
    opacity: 0.6;
}

@keyframes dust-float {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-33.33%) translateY(-5%);
    }
}

/* === GOLDEN ENERGY WAVE === */
.energy-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background:
        linear-gradient(90deg,
            transparent 0%,
            rgba(255, 215, 0, 0.03) 25%,
            rgba(255, 153, 51, 0.05) 50%,
            rgba(255, 215, 0, 0.03) 75%,
            transparent 100%);
    animation: energy-pulse 20s ease-in-out infinite;
    left: -100%;
}

@keyframes energy-pulse {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(25%);
        opacity: 0.6;
    }

    100% {
        transform: translateX(50%);
        opacity: 0.3;
    }
}

/* --- Hero Section (duplicate - transparent) --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
}

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    max-width: 700px;
    opacity: 0.35;
    animation: rotate-geometry 90s linear infinite;
    z-index: 2;
    pointer-events: none;
    /* GOLD GLOW - Reduced brightness for better text visibility */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.25)) drop-shadow(0 0 40px rgba(255, 153, 51, 0.15)) brightness(0.7);
}

@keyframes rotate-geometry {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* --- Services Section --- */
.services-section {
    padding: 40px 0;
    position: relative;
    background: transparent;
    /* Transparent to show global cosmic background */
}

.om-decoration {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.05);
    font-family: 'Noto Sans Devanagari', sans-serif;
    z-index: 1;
}

/* Old Services Section Purged for Unity */

/* --- About Section --- */
.about-section {
    padding: 40px 0;
    background: transparent;
    /* Transparent to show global cosmic background */
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-om {
    font-size: 10rem;
    color: rgba(255, 215, 0, 0.1);
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.about-planets {
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.4);
    margin-top: 20px;
    letter-spacing: 15px;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #FFD700, #FF9933);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 153, 51, 0.3);
    text-align: center;
    color: #1A0A0B;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.about-text {
    color: #F5E6CA;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 3px;
}

.about-feature h4 {
    color: #FFD700;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.about-feature p {
    color: #F5E6CA;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ========== VEDIC WISDOM BLOG SECTION ========== */
.blog-section {
    padding: 40px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Floating Om Symbols */
.floating-om {
    position: absolute;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.06);
    z-index: 0;
    pointer-events: none;
}

.floating-om.left-om {
    left: 3%;
    top: 20%;
    animation: float-gentle 8s ease-in-out infinite;
}

.floating-om.right-om {
    right: 3%;
    bottom: 20%;
    animation: float-gentle 8s ease-in-out infinite 4s;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Sacred Border Decorations */
.sacred-border-top,
.sacred-border-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    color: rgba(255, 215, 0, 0.4);
}

.border-symbol {
    font-size: 1.2rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

.border-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
        text-shadow: none;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Vedic Blog Card - Optimized for Light Theme */
.blog-card.vedic-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(141, 110, 99, 0.15);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
}

.blog-card.vedic-card:hover {
    transform: translateY(-12px);
    border-color: rgba(141, 110, 99, 0.3);
    box-shadow:
        0 20px 60px rgba(62, 39, 35, 0.1),
        0 0 40px rgba(141, 110, 99, 0.05);
}

.blog-card.vedic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.blog-card.vedic-card:hover::before {
    opacity: 1;
}

/* Card Zodiac Accent */
.card-zodiac-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: rgba(62, 39, 35, 0.05);
    z-index: 1;
    transition: all 0.5s ease;
}

.blog-card:hover .card-zodiac-accent {
    color: rgba(141, 110, 99, 0.15);
    transform: rotate(45deg) scale(1.1);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(62, 39, 35, 0.85);
    /* Dark Brown Glass */
    backdrop-filter: blur(4px);
    color: var(--gold, #D4AF37);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Blog Card Content */
.blog-card-content {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 500;
}

.blog-date i {
    margin-right: 6px;
    color: var(--copper);
}

.blog-title {
    font-family: var(--font-header);
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--secondary);
}

.blog-excerpt {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--copper);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more {
    color: var(--primary);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(8px);
}

/* Card Mantra Footer */
.card-mantra {
    background: rgba(255, 215, 0, 0.05);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 12px 20px;
    text-align: center;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.85rem;
    color: rgba(184, 115, 51, 0.8);
    letter-spacing: 2px;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: 30px;
}

.cta-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    color: rgba(255, 215, 0, 0.3);
    font-size: 0.9rem;
}

.vedic-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .floating-om {
        font-size: 5rem;
        opacity: 0.03;
    }

    .blog-title {
        font-size: 1.1rem;
    }
}

/* --- Appointment Section --- */
.appointment-parallax {
    padding: 100px 0;
    background: #FBF3E4;
    position: relative;
    overflow: hidden;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.appointment-text h2 {
    font-size: 2.2rem;
    color: #3E2723;
    margin-bottom: 10px;
    font-family: var(--font-header);
    font-weight: 700;
}

.appointment-text h3 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #3E2723;
}

.appointment-text p {
    color: #5D4037;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.nakshatra-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nakshatra-item {
    background: #FFFCF9;
    padding: 15px 20px;
    border-left: 3px solid #8D6E63;
    color: #3E2723;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(62, 39, 35, 0.05);
}

.appointment-form {
    background: #FFFCF9 !important;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(62, 39, 35, 0.1);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
    backdrop-filter: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: #FFF;
    border: 1px solid rgba(62, 39, 35, 0.2);
    border-radius: 8px;
    color: #3E2723;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #3E2723;
    box-shadow: 0 0 0 3px rgba(62, 39, 35, 0.1);
}

.lotus-decoration {
    position: absolute;
    font-size: 4rem;
    color: rgba(62, 39, 35, 0.08);
    animation: float 6s ease-in-out infinite;
}

.lotus-decoration.left {
    top: 20%;
    left: 5%;
}

.lotus-decoration.right {
    bottom: 20%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Mobile body padding */
@media (max-width: 768px) {
    body {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Touch-friendly buttons - min 48px height */
    .btn,
    .btn-primary,
    .btn-gold,
    .btn-secondary,
    .btn-saffron-pulse {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
    }

    /* Fix parallax on mobile */
    .appointment-parallax,
    .hero,
    [style*="background-attachment: fixed"] {
        background-attachment: scroll !important;
    }
}

/* Services Grid Responsive Breakpoints */
@media (min-width: 1025px) {
    .services-grid-vedic {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid-vedic {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .services-grid-vedic {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-tile {
        padding: 20px 12px;
    }

    .tile-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .tile-title-en {
        font-size: 0.85rem;
    }

    .tile-title-np {
        font-size: 0.75rem;
    }

    .price-badge {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .services-grid-vedic {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-tile {
        padding: 15px 10px;
    }

    .tile-icon {
        font-size: 1.8rem;
    }

    .tile-title-en {
        font-size: 0.8rem;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .sacred-geometry {
        width: 90vw;
        max-width: 350px;
    }

    .planet-icons {
        font-size: 1.3rem;
        gap: 8px;
    }

    .zodiac-ring {
        display: none;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-placeholder {
        height: 250px;
    }

    .about-experience {
        right: 10px;
        bottom: -20px;
        padding: 18px 22px;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* General Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .section-sanskrit {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* --- Footer Section --- */
.footer {
    color: #3D2B1F;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(62, 39, 35, 0.1);
    background: #FBF3E4;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: #FBF3E4;
}

/* Global Light Footer Styles */
.footer-col h3 {
    color: #3D2B1F;
    font-family: var(--font-header);
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col p,
.footer-col ul li a {
    color: #3D2B1F;
    opacity: 0.85;
}

.footer-col ul li a:hover {
    color: #8D6E63;
}

.footer-mantra,
.footer-tagline {
    color: #5C4A3D;
    font-family: var(--font-sanskrit);
}

.social-links a {
    border-color: rgba(62, 39, 35, 0.2);
    color: #3D2B1F;
}

.social-links a:hover {
    background: #3E2723;
    color: #FBF3E4;
    border-color: #3E2723;
}

.footer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;
    height: 1px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.00) 0%, rgba(255, 215, 0, 0.12) 20%, rgba(255, 215, 0, 0.10) 50%, rgba(255, 215, 0, 0.12) 80%, rgba(255, 215, 0, 0.00) 100%);
    opacity: 0.9;
}

/* Footer stars container (moving stars in landing footer) */
.footer-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
    display: none;
}

body.page-home .footer-stars {
    display: block;
}

.footer-stars .footer-starfield {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
}

/* Landing page: monochrome stars (no extra colors) */
body.page-home .footer-stars {
    /* Container element - actual stars are rendered by starfield layers */
    display: block;
}

/* Landing footer: make the starfields monochrome + faster so motion is obvious */
body.page-home .footer-stars .starfield-far {
    background-image:
        radial-gradient(1px 1px at 10px 10px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 50px 30px, rgba(0, 0, 0, 0.14) 50%, transparent 50%),
        radial-gradient(1px 1px at 100px 60px, rgba(0, 0, 0, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 20px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 200px 80px, rgba(0, 0, 0, 0.14) 50%, transparent 50%),
        radial-gradient(1px 1px at 250px 40px, rgba(0, 0, 0, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 300px 90px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(1px 1px at 350px 15px, rgba(0, 0, 0, 0.14) 50%, transparent 50%);
    opacity: 0.35;
    animation-duration: 55s;
}

body.page-home .footer-stars .starfield-mid {
    background-image:
        radial-gradient(2px 2px at 20px 50px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 100px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 140px 30px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(2px 2px at 200px 70px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(2px 2px at 260px 120px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 320px 45px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(2px 2px at 380px 85px, rgba(0, 0, 0, 0.22) 50%, transparent 50%);
    opacity: 0.30;
    animation-duration: 40s;
}

body.page-home .footer-stars .starfield-near {
    background-image:
        radial-gradient(3px 3px at 30px 80px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(3px 3px at 120px 40px, rgba(0, 0, 0, 0.18) 50%, transparent 50%),
        radial-gradient(4px 4px at 220px 110px, rgba(0, 0, 0, 0.22) 50%, transparent 50%),
        radial-gradient(3px 3px at 330px 25px, rgba(0, 0, 0, 0.16) 50%, transparent 50%),
        radial-gradient(4px 4px at 450px 75px, rgba(0, 0, 0, 0.22) 50%, transparent 50%);
    opacity: 0.26;
    animation-duration: 26s;
}

.footer-zodiac-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(820px, 94vw);
    height: min(820px, 94vw);
    transform: translate(-50%, -56%);
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
    background: url("../images/sacred-geometry-1.png") center/contain no-repeat;
    filter: drop-shadow(0 0 24px rgba(255, 215, 0, 0.10)) saturate(0.9);
    animation: rotate-footer-wheel 70s linear infinite;
}

@keyframes rotate-footer-wheel {
    from {
        transform: translate(-50%, -56%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -56%) rotate(360deg);
    }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .footer-container {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: 60px;
        align-items: start;
    }
}

/* Global Light Footer Styles - High Contrast */
.footer-col h3 {
    color: #3E2723;
    /* Dark Brown */
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-family: var(--font-header);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.9;
    color: #3D2B1F;
    /* Deep Umber */
    line-height: 1.6;
}

.footer-col ul li a {
    color: #3D2B1F;
    /* Deep Umber */
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(62, 39, 35, 0.3);
    border-radius: 50%;
    color: #3E2723;
    /* Dark Brown */
    margin-right: 12px;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.4);
}

.social-links a:hover {
    background: #3E2723;
    color: #FBF3E4;
    border-color: #3E2723;
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: #8D6E63;
    /* Copper */
    padding-left: 5px;
}

/* Footer Brand Styling */
.footer-brand {
    text-align: left;
}

.footer-logo-img {
    display: block;
    height: 56px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #5D4037;
    /* Muted Brown */
    letter-spacing: 1px;
    font-size: 0.95rem;
    margin-bottom: 15px !important;
    font-weight: 600;
}

/* Footer Logo - Light Theme */
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #3E2723;
    /* Dark Brown */
    background: none;
    -webkit-text-fill-color: #3E2723;
    margin-bottom: 8px;
    font-weight: 700;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-right: none;
    outline: none;
    width: 100%;
    background: #FFF;
    color: var(--text-main);
}

.newsletter-form input::placeholder {
    color: rgba(61, 43, 31, 0.5);
}

.newsletter-form button {
    padding: 12px 18px;
    background: #3E2723;
    border: none;
    color: #FFF;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #4E342E;
}


.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(62, 39, 35, 0.15);
    font-size: 0.9rem;
    color: #5D4037;
    opacity: 1;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.footer-mantra {
    display: block;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.1rem;
    color: #3E2723;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* === SWEETALERT2 VEDIC CUSTOMIZATION (LIGHT THEME) === */
.swal2-popup {
    background: #FBF3E4 !important;
    border: 1px solid rgba(61, 43, 31, 0.15) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.15) !important;
}

.swal2-title {
    color: var(--accent) !important;
    font-family: 'Cinzel', serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    color: var(--text-main) !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: #3E2723 !important;
    color: #FFF !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3) !important;
    border: none !important;
    transition: 0.3s !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    background: #4E342E !important;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.4) !important;
}

.swal2-cancel {
    background: transparent !important;
    color: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
}

.swal2-cancel:hover {
    background: rgba(62, 39, 35, 0.05) !important;
}

.swal2-icon.swal2-warning {
    border-color: #F57C00 !important;
    color: #F57C00 !important;
}

.swal2-icon.swal2-success {
    border-color: #2E7D32 !important;
    color: #2E7D32 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border: .25em solid rgba(46, 125, 50, 0.2) !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #2E7D32 !important;
}

.swal2-input {
    background: #FFF !important;
    border: 1px solid rgba(61, 43, 31, 0.2) !important;
    border-radius: 8px !important;
    color: var(--text-main) !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 15px auto !important;
}

.swal2-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px rgba(62, 39, 35, 0.1) !important;
}

.swal2-textarea {
    background: #FFF !important;
    border: 1px solid rgba(61, 43, 31, 0.2) !important;
    border-radius: 12px !important;
    color: var(--text-main) !important;
    padding: 15px !important;
}

.swal2-textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 15px rgba(62, 39, 35, 0.1) !important;
}

.swal2-vedic-title {
    color: var(--accent) !important;
    font-family: 'Cinzel', serif !important;
    text-transform: uppercase;
}

.swal2-vedic-text {
    color: var(--text-muted) !important;
    font-style: italic;
}

/* Footer Wheel - Global */
.footer-zodiac-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.15;
    background-image: url("../images/footer-wheel.png");
    width: min(500px, 90vw);
    height: min(500px, 90vw);
    transform: translate(-50%, -50%);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: invert(1) hue-rotate(180deg) brightness(0.6);
    /* Adjust for light theme visibility */
    z-index: 1;
    pointer-events: none;
}

/* Ensure footer layering */
.footer::after {
    z-index: 3;
}

.footer-container,
.footer-bottom {
    z-index: 4;
}


/* ========================================================================== */
/* === UNIFIED COMPONENT STYLES (Consolidated from inline view styles) ===== */
/* ========================================================================== */

/* ========== AUTH PAGES (Login/Register) ========== */
/* ========== AUTH PAGES (Login/Register) - LIGHT THEME ========== */
.auth-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-cosmic);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.auth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auth-deep-space {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--bg-cosmic);
}

.auth-starfield {
    position: absolute;
    width: 200%;
    height: 200%;
}

.auth-starfield-far {
    opacity: 0.20;
    background-image:
        radial-gradient(1px 1px at 10px 10px, rgba(60, 40, 30, 0.28) 50%, transparent 50%),
        radial-gradient(1px 1px at 50px 30px, rgba(60, 40, 30, 0.22) 50%, transparent 50%),
        radial-gradient(1px 1px at 100px 60px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 20px, rgba(60, 40, 30, 0.24) 50%, transparent 50%);
    background-size: 200px 100px;
    animation: auth-travel 100s linear infinite;
}

.auth-starfield-mid {
    opacity: 0.26;
    background-image:
        radial-gradient(2px 2px at 20px 50px, rgba(60, 40, 30, 0.22) 50%, transparent 50%),
        radial-gradient(2px 2px at 80px 100px, rgba(60, 40, 30, 0.18) 50%, transparent 50%),
        radial-gradient(2px 2px at 140px 30px, rgba(60, 40, 30, 0.20) 50%, transparent 50%);
    background-size: 180px 130px;
    animation: auth-travel 70s linear infinite;
}

.auth-starfield-near {
    opacity: 0.30;
    background-image:
        radial-gradient(3px 3px at 30px 80px, rgba(60, 40, 30, 0.20) 50%, transparent 50%),
        radial-gradient(3px 3px at 120px 40px, rgba(60, 40, 30, 0.16) 50%, transparent 50%);
    background-size: 200px 120px;
    animation: auth-travel 45s linear infinite;
}

@keyframes auth-travel {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

/* Hide Nebula in Light Mode for cleanliness */
.auth-nebula {
    display: none;
}

.auth-cosmic-dust {
    position: absolute;
    width: 300%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, rgba(60, 40, 30, 0.15) 50%, transparent 50%),
        radial-gradient(1px 1px at 80px 70px, rgba(60, 40, 30, 0.12) 50%, transparent 50%),
        radial-gradient(1px 1px at 150px 40px, rgba(60, 40, 30, 0.10) 50%, transparent 50%);
    background-size: 200px 100px;
    animation: auth-dust 30s linear infinite;
    opacity: 0.3;
}

@keyframes auth-dust {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.08);
}

.auth-card h2 {
    color: var(--accent);
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-family: var(--font-header);
    font-weight: 700;
}

.auth-subtitle {
    color: var(--text-muted);
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.auth-card .form-group {
    margin-bottom: 18px;
    text-align: left;
}

.auth-card label {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.auth-card input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.auth-card input::placeholder {
    color: rgba(61, 43, 31, 0.4);
}

.auth-card input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 15px rgba(62, 39, 35, 0.1);
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: #3E2723;
    border: none;
    border-radius: 50px;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: var(--font-body);
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
}

.btn-auth:hover {
    transform: translateY(-2px);
    background: #4E342E;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.4);
}

.btn-google {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    background: #FFF;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 50px;
    color: #3E2723;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    box-sizing: border-box;
}

.btn-google:hover {
    background: #FAFAFA;
    border-color: #3E2723;
    transform: translateY(-1px);
}

.auth-link {
    margin-top: 25px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.auth-link a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link a:hover {
    color: #5D4037;
    text-decoration: underline;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    min-height: 78px;
}

/* ========== DASHBOARD PAGE ========== */
.dashboard-container {
    min-height: 100vh;
    padding: 140px 20px 60px;
    background-color: transparent;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title-vedic {
    font-family: var(--font-header);
    color: var(--accent);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vedic Table */
.table-responsive {
    overflow-x: auto;
}

.vedic-table {
    width: 100%;
    border-collapse: collapse;
}

.vedic-table th {
    text-align: left;
    padding: 20px;
    color: var(--accent);
    font-family: var(--font-header);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.vedic-table td {
    padding: 20px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.service-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-cell i {
    color: var(--primary);
    font-size: 1.2rem;
}

.service-cell .service-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

/* Status Pills */
.status-pill {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    background: rgba(255, 119, 34, 0.15);
    color: var(--primary);
    border: 1px solid rgba(255, 119, 34, 0.3);
}

.status-pill.completed {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
    border-color: rgba(76, 175, 80, 0.3);
}

.status-pill.pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.status-pill.cancelled {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.3);
}

.btn-view-details {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-header);
}

.btn-view-details:hover {
    background: var(--accent);
    color: #000;
}

/* Profile Info */
.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-group label {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.info-group p {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.status-active {
    color: #4caf50 !important;
}

.profile-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.empty-state {
    text-align: center;
    padding: 60px !important;
    opacity: 0.6;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.btn-gold-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Dashboard Mobile */
@media (max-width: 992px) {
    .dashboard-container {
        padding: 100px 20px 40px;
    }
}

/* ========== PAYMENT PAGE ========== */
/* ========== PAYMENT PAGE (Light Theme) ========== */
.payment-page-container {
    padding: 130px 0 80px;
    min-height: 100vh;
}

.instruction-header {
    margin-bottom: 36px;
    text-align: center;
}

.instruction-header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.instruction-header .section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.payment-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.payment-card {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 340px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.05);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(61, 43, 31, 0.1);
}

.payment-card .card-title {
    color: var(--accent);
    font-family: var(--font-header);
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.qr-container {
    background: white;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(61, 43, 31, 0.1);
}

.qr-image {
    width: 100%;
    max-width: 160px;
    height: auto;
}

.brand-logo img {
    max-width: 100px;
    height: auto;
}

.bank-logo {
    background: white;
    padding: 6px 12px;
    border-radius: 6px;
    max-width: 110px !important;
    border: 1px solid rgba(61, 43, 31, 0.1);
}

.details-card {
    text-align: left;
    align-items: flex-start;
}

.details-list {
    width: 100%;
}

.detail-item {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(61, 43, 31, 0.1);
    padding-bottom: 8px;
}

.detail-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.detail-item span {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

/* WhatsApp Banner */
.whatsapp-banner {
    padding: 36px 48px;
    margin-bottom: 36px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.banner-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.banner-brand {
    color: var(--accent);
    font-family: var(--font-header);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.banner-instruction {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.banner-subtext {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #128C7E;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(18, 140, 126, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(18, 140, 126, 0.3);
    color: white;
    background: #075E54;
}

.whatsapp-cta-btn i {
    font-size: 1.3rem;
}

/* Order Summary & Contact Grid */
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.order-summary-section,
.contact-section {
    padding: 28px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    border: 1px solid rgba(61, 43, 31, 0.1);
}

.order-details-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
}

.service-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(62, 39, 35, 0.05);
    border: 1px solid rgba(62, 39, 35, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.service-text h4 {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.service-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.summary-divider {
    height: 1px;
    background: rgba(61, 43, 31, 0.1);
    margin: 16px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-row .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.summary-row .value {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
}

.summary-row.total .label {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.summary-row.total .value {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-header);
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-family: var(--font-sanskrit);
    font-size: 1.35rem;
    margin-bottom: 24px;
    color: var(--accent);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
    margin: 0 -16px;
}

.contact-row:hover {
    background: rgba(61, 43, 31, 0.05);
}

.contact-row.static {
    cursor: default;
}

.contact-row.static:hover {
    background: transparent;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(62, 39, 35, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1rem;
}

.contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
}

.contact-icon.whatsapp i {
    color: #25D366;
}

.contact-value {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

.location-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 0.9rem;
    padding: 12px 0;
    margin-top: auto;
    transition: 0.3s;
    border-top: 1px solid rgba(61, 43, 31, 0.1);
    text-decoration: none;
    font-weight: 600;
}

.location-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.location-link .fa-arrow-right {
    font-size: 0.75rem;
    margin-left: auto;
    opacity: 0.6;
}

/* Payment Mobile */
@media (max-width: 992px) {
    .payment-panels-grid {
        grid-template-columns: 1fr;
    }

    .payment-card {
        min-height: auto;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-banner {
        padding: 28px 24px;
    }
}

@media (max-width: 576px) {
    .payment-page-container {
        padding: 110px 0 60px;
    }

    .instruction-header h1 {
        font-size: 1.6rem;
    }

    .whatsapp-cta-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .whatsapp-cta-btn span {
        display: none;
    }

    .whatsapp-cta-btn::after {
        content: 'Send on WhatsApp';
    }

    .order-summary-section,
    .contact-section {
        padding: 24px 20px;
    }

    .service-preview {
        flex-direction: column;
        text-align: center;
    }

    .contact-row {
        margin: 0 -8px;
        padding: 10px 8px;
    }
}

/* ========== SERVICES PAGE (Light Theme) ========== */
.profile-setup-section {
    padding: 140px 0 40px;
    background: transparent;
}

.profile-card-vedic {
    padding: 40px;
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    box-shadow: 0 15px 45px rgba(61, 43, 31, 0.05);
}

.profile-header-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-avatar-container {
    flex-shrink: 0;
}

.profile-avatar {
    width: 180px;
    height: 180px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8rem;
    color: #ccc;
    position: relative;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(61, 43, 31, 0.1);
    cursor: pointer;
}

.change-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
    color: #FFF;
    padding: 15px 0 10px;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.change-image-overlay:hover {
    background: rgba(62, 39, 35, 1);
}

.profile-info-content {
    flex: 1;
}

.profile-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.user-name-title {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-header);
}

.profile-action-btns {
    display: flex;
    gap: 10px;
}

.btn-profile-action {
    padding: 12px 25px;
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(61, 43, 31, 0.15);
}

.edit-profile-btn {
    background: #3E2723;
    border: 1px solid rgba(61, 43, 31, 0.3);
}

.edit-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.3);
    background: #4E342E;
}

.btn-saffron-pulse.btn-sm {
    padding: 12px 25px;
    font-size: 0.95rem;
    border-radius: 10px;
    background: #8D6E63;
}

.kundali-notice-bar {
    background: rgba(62, 39, 35, 0.05);
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 600;
    border-left: 5px solid var(--accent);
    font-style: italic;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.profile-details-grid .detail-item {
    display: flex;
    gap: 8px;
    font-size: 0.95rem;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    align-items: baseline;
}

.profile-details-grid .detail-item label {
    color: var(--accent);
    font-weight: 700;
    min-width: 130px;
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.profile-details-grid .detail-item span {
    color: var(--text-main);
    font-weight: 500;
    word-break: break-word;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .profile-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Kundali Form Overlay */
.kundali-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.kundali-form-card {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    background: #FBF3E4 !important;
    border: 1px solid rgba(61, 43, 31, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
    padding-bottom: 10px;
}

.form-header h3 {
    color: var(--accent);
    font-size: 1.8rem;
    font-family: var(--font-header);
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--accent);
}

.form-row {
    margin-bottom: 20px;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-col label {
    font-weight: 600;
    color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-main);
}

.dob-selects,
.pob-selects {
    display: flex;
    gap: 10px;
}

.tob-time-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    min-width: 240px;
}

.tob-time-group input,
.tob-time-group select {
    flex: 1;
}

.tob-time-group select {
    max-width: 90px;
}

.dob-selects select,
.pob-selects select,
.pob-selects input,
.tob-flex input {
    flex: 1;
}

.tob-flex {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

#kundaliForm input[type="text"],
#kundaliForm input[type="email"],
#kundaliForm select,
#kundaliForm input[type="time"] {
    padding: 12px;
    background: #FFF;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 8px;
    color: var(--text-main);
    width: 100%;
    font-family: var(--font-body);
}

/* Ensure consistent sizing & alignment for all kundali form controls */
#kundaliForm input,
#kundaliForm select {
    box-sizing: border-box;
    height: 48px;
    line-height: 1.2;
}

#kundaliForm input[type="radio"] {
    height: auto;
}

#kundaliForm select option {
    background: #FFF;
    color: var(--text-main);
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

/* Services Header */
.services-header-compact {
    padding: 40px 0 20px;
    text-align: center;
}

/* Services List Section (Dashboard Variant) */
.services-list-section {
    padding: 60px 0 100px;
    background: transparent;
}

.no-services-found {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

/* Services Mobile */
@media (max-width: 768px) {
    .profile-header-flex {
        flex-direction: column;
        align-items: center;
    }

    .profile-card-vedic {
        padding: 26px;
    }

    .profile-avatar {
        width: 150px;
        height: 150px;
        font-size: 6.5rem;
    }

    .profile-details-grid {
        grid-template-columns: 1fr;
    }

    .profile-top-bar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .profile-action-btns {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .dob-selects,
    .pob-selects {
        flex-direction: column;
    }

    .kundali-form-card {
        padding: 22px;
        max-height: 92vh;
    }

    .tob-flex {
        gap: 14px;
        align-items: stretch;
    }

    .tob-time-group {
        width: 100%;
        min-width: 0;
    }

    .tob-time-group select {
        max-width: 120px;
    }

    /* Uniform spacing and full-width controls on mobile */
    .form-row {
        margin-bottom: 16px;
    }

    #kundaliForm input[type="text"],
    #kundaliForm input[type="email"],
    #kundaliForm select {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .profile-setup-section {
        padding: 120px 0 30px;
    }

    .profile-card-vedic {
        padding: 20px;
    }

    .user-name-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .profile-details-grid {
        gap: 14px;
    }

    .profile-details-grid .detail-item {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .profile-details-grid .detail-item label {
        min-width: 0;
        font-size: 0.95rem;
    }

    /* Reduce header title overflow on small screens (inline styles overridden) */
    .services-header-compact .section-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .profile-avatar {
        width: 130px;
        height: 130px;
        font-size: 5.8rem;
    }

    .btn-profile-action,
    .btn-saffron-pulse.btn-sm {
        width: 100%;
        justify-content: center;
    }

    .services-grid-vedic {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
        margin-top: 28px;
    }

    .service-tile {
        padding: 24px 16px 20px !important;
    }

    .tile-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .tile-icon i {
        font-size: 2.2rem;
    }
}

/* ========== STATUS PAGE (verify_status.php) ========== */
.status-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(61, 43, 31, 0.05);
}

.status-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.status-icon.success {
    color: #4CAF50;
}

.status-icon.error {
    color: #f44336;
}

.status-title {
    font-family: var(--font-header);
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.status-message {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.btn-home {
    background: var(--primary);
    color: #FFF !important;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.2);
}

.btn-home:hover {
    transform: translateY(-2px);
    background: #4E342E;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.3);
}

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail-header {
    padding: 160px 0 60px;
    text-align: center;
    background: transparent;
}

.service-detail-header h1 {
    color: var(--accent);
    font-family: var(--font-header);
    font-weight: 700;
}

.booking-section {
    padding: 40px 0 100px;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.service-info-col {
    color: var(--text-main);
}

.service-info-col h2 {
    color: var(--accent);
    margin-bottom: 20px;
    font-family: var(--font-header);
}

.service-info-col p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-img-placeholder {
    width: 100%;
    height: 320px;
    background: rgba(61, 43, 31, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(61, 43, 31, 0.1);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.03);
}

.detail-img-placeholder i {
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.8;
}

.detail-price-tag {
    font-size: 1.8rem;
    margin: 25px 0;
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-header);
}

.service-features-list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.service-features-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features-list li i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.booking-glass-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(61, 43, 31, 0.05);
}

.booking-glass-form h3 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent);
    font-family: var(--font-header);
    font-weight: 700;
}

.booking-glass-form .form-group {
    margin-bottom: 20px;
}

.booking-glass-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-weight: 600;
}

.booking-glass-form input,
.booking-glass-form select,
.booking-glass-form textarea {
    width: 100%;
    padding: 12px;
    background: #FFF;
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

/* ========== QUERY PAGE (query.php) ========== */
.query-page-wrapper {
    padding: 140px 20px 80px;
    min-height: 100vh;
}

.query-glass-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(61, 43, 31, 0.12);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(61, 43, 31, 0.05);
    text-align: center;
}

.query-header-title {
    color: var(--accent);
    font-family: var(--font-header);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.query-textarea {
    width: 100%;
    height: 250px;
    padding: 20px;
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 12px;
    font-size: 1.1rem;
    background: #FFF;
    color: var(--text-main);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    resize: none;
}

.query-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(62, 39, 35, 0.08);
}

.query-char-counter {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ========== PAYMENT INSTRUCTIONS (payment-instruction.php) ========== */
.instruction-page-wrapper {
    padding: 140px 0 80px;
}

.instruction-main-header {
    text-align: center;
    margin-bottom: 50px;
}

.instruction-main-header .section-sanskrit {
    color: var(--copper);
    margin-bottom: 10px;
}

.verification-form-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    border: 1px solid rgba(61, 43, 31, 0.12);
    box-shadow: 0 15px 45px rgba(61, 43, 31, 0.05);
}

.payment-price-display {
    color: var(--primary);
    font-size: 2.8rem;
    margin: 15px 0 35px;
    font-weight: 800;
    font-family: var(--font-header);
}

.method-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.method-option {
    cursor: pointer;
}

.method-option input {
    display: none;
}

.method-option span {
    display: block;
    padding: 12px 25px;
    background: #FFF;
    border: 1px solid rgba(61, 43, 31, 0.15);
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 600;
    transition: 0.3s;
}

.method-option input:checked+span {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.2);
}

.proof-upload-box {
    border: 2px dashed rgba(61, 43, 31, 0.2);
    padding: 40px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.proof-upload-box:hover {
    border-color: var(--primary);
    background: rgba(62, 39, 35, 0.03);
}

.proof-upload-box i {
    font-size: 3rem;
    color: var(--copper);
    margin-bottom: 15px;
}

.proof-upload-box p {
    color: var(--text-muted);
}

.whatsapp-notice-glass {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 40px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    background: rgba(255, 255, 255, 0.6) !important;
}

.whatsapp-icon-btn {
    display: inline-flex;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-icon-btn:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

/* ========== LANDING PAGE SPECIFIC (home.php) ========== */
/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #FBF3E4;
}

::-webkit-scrollbar-thumb {
    background: #8D6E63;
    border-radius: 6px;
    border: 3px solid #FBF3E4;
}

::-webkit-scrollbar-thumb:hover {
    background: #5D4037;
}

body.page-home {
    background-color: var(--lp-bg);
    color: var(--lp-text);
}

body.page-home h1,
body.page-home h2,
body.page-home h3 {
    color: var(--font-primary-color);
    letter-spacing: 0.5px;
}

body.page-home .text-gold-gradient {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 50%, #3E2723 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--font-primary-color);
}

#hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sanskrit-blessing,
.section-sanskrit,
.about-om,
.sanskrit-text {
    color: #BF360C !important;
    /* Deep Saffron for high visibility */
    opacity: 1;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(191, 54, 12, 0.1);
}

.om-decoration {
    color: rgba(191, 54, 12, 0.08) !important;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 700 !important;
    color: #3E2723 !important;
    /* Dark Brown for max visibility */
    letter-spacing: 0.5px;
    text-shadow: none;
}

.planet-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    font-size: 2.2rem;
}

.planet-icons span {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(62, 39, 35, 0.1));
}

.planet-icons span:hover {
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 5px 15px rgba(62, 39, 35, 0.2));
}

/* Specific Vedic Colors for Planets - "Not Monotonous" */
.planet-icons span:nth-child(1) {
    color: #E65100;
}

/* Sun - Surya (Deep Orange) */
.planet-icons span:nth-child(2) {
    color: #455A64;
}

/* Moon - Chandra (Dark Silver) */
.planet-icons span:nth-child(3) {
    color: #D32F2F;
}

/* Mars - Mangal (Red) */
.planet-icons span:nth-child(4) {
    color: #2E7D32;
}

/* Mercury - Budha (Green) */
.planet-icons span:nth-child(5) {
    color: #F9A825;
}

/* Jupiter - Brihaspati (Gold/Yellow) */
.planet-icons span:nth-child(6) {
    color: #AD1457;
}

/* Venus - Shukra (Magenta/White) */
.planet-icons span:nth-child(7) {
    color: #283593;
}

/* Saturn - Shani (Dark Blue) */
.planet-icons span:nth-child(8) {
    color: #424242;
}

/* Rahu (Smoky Grey) */
.planet-icons span:nth-child(9) {
    color: #5D4037;
}

/* Ketu (Brown) */

.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: multiply;
    filter: blur(1.5px);
    animation: rotate-eternal 120s linear infinite;
}

@keyframes rotate-eternal {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.services-section {
    padding: 100px 0;
    position: relative;
}

.om-decoration {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-family: var(--font-sanskrit);
    z-index: 0;
}





/* === SERVICES SECTION - PREMIUM VEDIC DESIGN === */
.services-grid-vedic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Service Card - Bright Premium Cream Aesthetic */
.service-tile {
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%) !important;
    border: 1px solid rgba(93, 64, 55, 0.06) !important;
    border-radius: 16px !important;
    padding: 35px 25px 30px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer;
    text-decoration: none;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.03) !important;
}

.service-tile:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.12) !important;
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF7F2 100%) !important;
    border-color: rgba(62, 39, 35, 0.15) !important;
}

/* Price Badge - Minimal Nude Aesthetic */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F4EBDC !important;
    color: #3E2723 !important;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.06);
    z-index: 10;
    letter-spacing: 0.3px;
    border: 1px solid rgba(62, 39, 35, 0.08);
}

/* Icon - Premium Vedic (No Glow) */
.tile-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tile-icon i {
    font-size: 2.6rem;
    background: linear-gradient(135deg, #ee7c1e, #e2d8c7) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    /* Clean sharp shadow, no blur/glow */
    filter: drop-shadow(0 2px 1px rgba(62, 39, 35, 0.2));
    transition: all 0.3s ease;
    display: inline-block;
}

/* Uploaded service icons (image_url) - keep same visual size as existing icons */
.tile-icon .service-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.service-tile:hover .tile-icon {
    transform: translateY(-3px);
}

.service-tile:hover .tile-icon i {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 2px rgba(62, 39, 35, 0.15));
}

/* Title - Serif Typography */
.tile-title-en {
    color: #3E2723 !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

/* Hindi Subtitle - Muted Sans-serif */
.tile-title-np {
    color: #A67C52 !important;
    font-size: 0.8rem;
    font-family: var(--font-sanskrit);
    opacity: 0.9;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* === GLOBAL SECTION HEADINGS === */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--lp-heading);
    position: relative;
    display: block;
    /* Changed from inline-block to block for easier centering */
    width: 100%;
    transform: none;
    left: 0;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, rgba(61, 43, 31, 0.35));
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: #5D4037;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 400;
    width: 100%;
    display: block;
}

.section-sanskrit {
    text-align: center;
    font-family: var(--font-sanskrit);
    color: #8D6E63;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
    opacity: 0.9;
    width: 100%;
    display: block;
}

/* === ABOUT US SECTION === */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    width: 100%;
}

.about-img-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #8D6E63;
    border-radius: 20px;
    opacity: 0.3;
    z-index: 0;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%);
    border: 1px solid rgba(93, 64, 55, 0.08);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
}

.about-om {
    font-family: var(--font-sanskrit);
    font-size: 8rem;
    color: #8D6E63;
    opacity: 0.15;
    display: block;
}

.about-planets {
    font-size: 3rem;
    color: #5D4037;
    opacity: 0.2;
    letter-spacing: 15px;
    margin-top: 20px;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #3E2723;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(61, 43, 31, 0.25);
}

.exp-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFFFFF;
    font-family: var(--font-header);
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.about-content .section-title {
    left: 0;
    transform: none;
    text-align: left;
}

.about-text {
    color: #3D2B1F;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
    padding: 18px 20px;
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%);
    border: 1px solid rgba(93, 64, 55, 0.06);
    border-radius: 12px;
    border-left: 4px solid #3E2723;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.03);
}

.about-feature:hover {
    transform: translateX(8px);
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF7F2 100%);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #ee7c1e, #e2d8c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 700;
}

.about-feature h4 {
    color: #3E2723;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: var(--font-header);
}

.about-feature p {
    color: #5D4037;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* === CONTACT/APPOINTMENT SECTION === */
.appointment-parallax {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.lotus-decoration {
    position: absolute;
    font-size: 3rem;
    color: rgba(61, 43, 31, 0.1);
    z-index: 0;
    animation: float-lotus 6s ease-in-out infinite;
}

.lotus-decoration.left {
    left: 50px;
    top: 20%;
}

.lotus-decoration.right {
    right: 50px;
    bottom: 20%;
    animation-delay: 3s;
}

@keyframes float-lotus {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.appointment-text {
    color: #3D2B1F;
}

.sanskrit-text {
    font-family: var(--font-sanskrit);
    color: #8D6E63;
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.appointment-text h2 {
    font-size: 2.5rem;
    color: #3E2723;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: var(--font-header);
}

.appointment-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.appointment-text>p {
    color: #5D4037;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.nakshatra-info {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%);
    border: 1px solid rgba(93, 64, 55, 0.06);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.03);
}

.nakshatra-item {
    font-size: 0.95rem;
    color: #3D2B1F;
}

.nakshatra-item strong {
    color: #D2691E;
    font-weight: 700;
}

.appointment-form {
    padding: 40px;
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%);
    border: 1px solid rgba(93, 64, 55, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
}

.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(62, 39, 35, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: rgba(255, 255, 255, 0.9);
    color: #3D2B1F;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: #3E2723;
    box-shadow: 0 0 0 3px rgba(62, 39, 35, 0.08);
    background: #FFFFFF;
}

.appointment-form input::placeholder {
    color: #8D6E63;
}

.appointment-form button {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* Unified Buttons (Home Only Overrides) */
body.page-home .btn-saffron-pulse,
body.page-home .btn-gold {
    color: #FFFFFF !important;
    background: #3E2723 !important;
    border: 1px solid rgba(93, 64, 55, 0.3) !important;
    box-shadow: 0 4px 15px rgba(61, 43, 31, 0.15) !important;
    animation: none !important;
    font-weight: 600;
    border-radius: 50px;
}

/* === BLOG SECTION - MATCHING SERVICE CARDS AESTHETIC === */
/* === BLOG SECTION - DARK PREMIUM VEDIC THEME === */
.blog-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

/* Blog Card Container */
.blog-card,
.vedic-card {
    position: relative;
    background: #5D4037 !important;
    /* Primary Dark Brown */
    border: none !important;
    border-radius: 20px !important;
    padding: 0 !important;
    /* Reset padding for split layout */
    min-height: 450px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.15) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.blog-card:hover,
.vedic-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.25) !important;
    background: #4E342E !important;
    /* Slightly Darker/Richer on hover */
}

/* === Top Section: Gradient & Image === */
.blog-card-image {
    display: block !important;
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
}

/* Base Gradient (Jupiter/Default) */
.blog-placeholder-img {
    display: flex !important;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8D6E63 0%, #3E2723 100%);
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Specific Theme Gradients */
.saturn-theme {
    background: linear-gradient(135deg, #512DA8 0%, #311B92 100%);
}

.mercury-theme {
    background: linear-gradient(135deg, #43A047 0%, #1B5E20 100%);
}

/* Central Symbol in Gradient (Sun/Star) */
.placeholder-symbol {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.15);
    animation: rotate-eternal 60s linear infinite;
}

/* Category Tag - Orange Pill */


/* Top Right Zodiac Icon */
.card-zodiac-accent {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3) !important;
    z-index: 3;
    font-family: serif;
    line-height: 1;
}

/* === Bottom Section: Content === */
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data Row */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.blog-date,
.blog-nakshatra {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500;
}

.blog-date i,
.blog-nakshatra i {
    color: #FFCA28;
    margin-right: 5px;
}

/* Title - Gold Serif */
.blog-title {
    font-family: var(--font-header);
    font-size: 1.4rem !important;
    font-weight: 700;
    color: #FFCA28 !important;
    /* Gold */
    line-height: 1.3;
    margin: 0 0 15px 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Excerpt - Light Text */
.blog-excerpt {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 0 25px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More - Gold Link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FFCA28 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 15px;
    color: #FFD54F !important;
}

.card-mantra {
    display: none !important;
}

.floating-om {
    position: absolute;
    font-size: 8rem;
    color: rgba(61, 43, 31, 0.03);
    font-family: var(--font-sanskrit);
    z-index: 0;
    pointer-events: none;
}

.left-om {
    left: -50px;
    top: 150px;
}

.right-om {
    right: -50px;
    bottom: 150px;
}

.sacred-border-top,
.sacred-border-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0.3;
    padding: 20px 0;
}

.border-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-heading), transparent);
}

.border-symbol {
    font-size: 1.2rem;
    color: var(--lp-heading);
}

/* === RESPONSIVE STYLES FOR HOME PAGE SECTIONS === */
@media (max-width: 992px) {
    .services-grid-vedic {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }

    .service-tile {
        padding: 30px 20px 25px !important;
    }

    .tile-icon {
        width: 50px;
        height: 50px;
    }

    .tile-icon i {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .appointment-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .appointment-text {
        text-align: center;
    }

    .nakshatra-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid-vedic {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .service-tile {
        padding: 25px 15px 20px !important;
        border-radius: 12px !important;
    }

    .tile-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .tile-icon i {
        font-size: 1.8rem;
    }

    .tile-title-en {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .tile-title-np {
        font-size: 0.7rem;
    }

    .price-badge {
        top: 10px;
        right: 10px;
        padding: 3px 10px;
        font-size: 0.65rem;
    }

    .about-om {
        font-size: 5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card,
    .vedic-card {
        padding: 30px 25px;
        min-height: 320px;
    }

    .card-zodiac-accent {
        font-size: 8rem;
    }

    .blog-title {
        font-size: 1.2rem !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .appointment-text h2 {
        font-size: 2rem;
    }

    .appointment-form {
        background: #FBF3E4 !important;
    }

    .appointment-text h3 {
        font-size: 1.5rem;
    }

    .appointment-form {
        padding: 30px 25px;
    }

    .nakshatra-info {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .services-grid-vedic {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-tile {
        padding: 20px 12px 18px !important;
    }

    .tile-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .tile-icon i {
        font-size: 1.5rem;
    }

    .tile-title-en {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .tile-title-np {
        font-size: 0.6rem;
    }

    .price-badge {
        top: 8px;
        right: 8px;
        padding: 2px 8px;
        font-size: 0.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
}


/* === SLIM TOAST NOTIFICATIONS (IMAGE 2 STYLE) === */
div:where(.swal2-container).swal2-bottom-end>.swal2-popup.slim-toast {
    display: grid !important;
    grid-template-columns: min-content 1fr !important;
    align-items: center !important;
    width: auto !important;
    max-width: 450px !important;
    min-width: 320px !important;
    padding: 16px 24px !important;
    background: #FFFFFF !important;
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.15) !important;
    border-radius: 12px !important;
    border-left: 5px solid #2E7D32 !important;
    margin-bottom: 20px !important;
    margin-right: 20px !important;
    overflow: hidden !important;
}

/* Status variants */
.slim-toast.toast-success {
    border-left-color: #2E7D32 !important;
}

.slim-toast.toast-error {
    border-left-color: #C62828 !important;
}

.slim-toast.toast-warning {
    border-left-color: #EF6C00 !important;
}

.slim-toast.toast-info {
    border-left-color: #0288D1 !important;
}

/* Icon Styling */
.slim-toast .swal2-icon {
    grid-row: 1 / 3;
    margin: 0 20px 0 0 !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    border-width: 2px !important;
}

.slim-toast.toast-success .swal2-icon.swal2-success {
    border-color: #2E7D32 !important;
    color: #2E7D32 !important;
}

.slim-toast.toast-error .swal2-icon.swal2-error {
    border-color: #C62828 !important;
    color: #C62828 !important;
}

.slim-toast.toast-warning .swal2-icon.swal2-warning {
    border-color: #EF6C00 !important;
    color: #EF6C00 !important;
}

.slim-toast.toast-info .swal2-icon.swal2-info {
    border-color: #0288D1 !important;
    color: #0288D1 !important;
}

/* Text Content */
.slim-toast .swal2-title {
    font-family: var(--font-body) !important;
    /* 'Outfit' */
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #3E2723 !important;
    margin: 0 0 2px 0 !important;
    text-align: left !important;
    line-height: 1.2 !important;
    display: block !important;
    width: 100% !important;
}

.slim-toast .swal2-html-container {
    font-family: var(--font-body) !important;
    font-size: 0.9rem !important;
    color: #5D4037 !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.4 !important;
    display: block !important;
    width: 100% !important;
    opacity: 0.9;
}

/* Reset standard sweetalert styles that might conflict */
.slim-toast .swal2-actions {
    display: none !important;
}

/* === PAYMENT PAGE - FINAL REFINED UI === */
.payment-page-wrapper {
    padding: 40px 0 60px;
    background-color: #FBF3E4;
    min-height: 100vh;
}

/* WhatsApp Header - Muted Beige from Existing Palette */
.payment-header-green {
    background: #EEDCC1;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(62, 39, 35, 0.06);
    border: 1px solid rgba(189, 164, 129, 0.3);
}

.header-content-unified {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #5D4037;
}

.payment-header-green .header-title {
    color: #5D4037 !important;
    font-family: var(--font-sanskrit);
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.header-separator {
    opacity: 0.4;
    font-weight: 300;
    font-size: 1rem;
    color: #8D6E63;
}

.header-wa-text {
    font-size: 0.9rem;
    font-weight: 600;
    flex-grow: 1;
    color: #6D4C41;
}

.whatsapp-icon-link {
    background: #25D366;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #FFFFFF !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-link:hover {
    background: #1DB954;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* Grid Layout - Strict Equal Columns */
.payment-layout-grid.equal-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.payment-grid-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.payment-grid-col>.glass-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Unified Card Styling */
.bank-details-card,
.qr-branded-card,
.order-summary-section,
.contact-section {
    padding: 24px 20px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(62, 39, 35, 0.05);
}

.qr-branded-card {
    justify-content: flex-start;
}

/* Pill Header */
.card-header-pill {
    background: #E8D4B8;
    color: #6D4C41 !important;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
    align-self: center;
}

/* Bank Details - Tightened Spacing */
.details-list {
    width: 100%;
    padding: 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(62, 39, 35, 0.06);
    gap: 12px;
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-item label {
    font-weight: 600;
    color: #8D6E63;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.detail-item span {
    font-weight: 700;
    color: #3E2723;
    font-size: 0.9rem;
    text-align: right;
    word-break: break-word;
}

/* QR Section - Larger Codes & Clean Layout */
.qr-brand-item {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
    padding: 16px 0;
}

.qr-brand-item+.qr-brand-item {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(62, 39, 35, 0.08);
}

.brand-label-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.brand-logo-inline {
    max-width: 70px;
    height: auto;
}

.brand-name-inline {
    font-weight: 700;
    color: #5D4037;
    font-size: 0.95rem;
}

.qr-img-large {
    width: 120px;
    height: 120px;
    border: 2px solid #D9C5A7;
    padding: 8px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.06);
}

/* Order Summary & Contact */
.order-summary-section .section-sanskrit {
    margin-bottom: 2px;
    font-size: 0.8rem;
    color: #A1887F;
}

.order-summary-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: #3E2723;
}

.contact-section .contact-heading {
    font-size: 1.15rem;
    margin-bottom: 14px;
    font-weight: 700;
    color: #3E2723;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.summary-row .label {
    color: #6D4C41;
    font-size: 0.88rem;
}

.summary-row .value {
    font-weight: 700;
    color: #3E2723;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 1px solid #D9C5A7;
    margin-top: 10px;
    padding-top: 12px;
}

.summary-row.total .value {
    color: #5D4037;
    font-size: 1.15rem;
    font-weight: 800;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.contact-icon {
    color: #8D6E63;
    width: 20px;
    text-align: center;
}

.contact-value {
    color: #3E2723;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .payment-layout-grid.equal-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .payment-header-green {
        padding: 14px 18px;
    }

    .header-content-unified {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .header-separator {
        display: none;
    }

    .header-wa-text {
        width: 100%;
        text-align: center;
        margin-top: 6px;
    }

    .qr-img-large {
        width: 100px;
        height: 100px;
    }
}

html {
    scroll-behavior: smooth;
}

/* === GEMSTONE SECTION === */
.gemstone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.gemstone-card {
    background: #FFF;
    border-radius: 16px;
    border: 1px solid rgba(62, 39, 35, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px -10px rgba(62, 39, 35, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gemstone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(62, 39, 35, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
    /* Gold hint on hover */
}

.gemstone-img-wrapper {
    width: 100%;
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background: radial-gradient(circle at center, #FFFCF9 0%, #F0EAE0 100%);
    overflow: hidden;
}

.gemstone-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 35px;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.gemstone-card:hover .gemstone-img {
    transform: scale(1.12) rotate(5deg);
}

.gemstone-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    background: #FFF;
    border-top: 1px solid rgba(62, 39, 35, 0.05);
}

.gemstone-title {
    font-family: var(--font-header, 'Cinzel', serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 8px;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.gemstone-name-np {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #8D6E63;
    font-weight: 400;
    position: relative;
    padding-left: 10px;
}

.gemstone-name-np::before {
    content: '|';
    position: absolute;
    left: 0;
    color: #D7CCC8;
}

.gemstone-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFB300;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.gemstone-rating span {
    color: #A1887F;
    margin-left: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.gemstone-price {
    font-size: 1.35rem;
    color: #D35400;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.gemstone-old-price {
    font-size: 0.95rem;
    color: #BCAAA4;
    text-decoration: line-through;
    font-weight: 400;
}

.gemstone-btn {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: #3E2723;
    color: #FFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gemstone-btn::before {
    content: '\f3a5';
    /* FontAwesome Gem */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.gemstone-btn:hover {
    background: #5D4037;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.35);
}

/* SweetAlert Customizations */
.swal2-popup-gemstone {
    font-family: 'Outfit', sans-serif !important;
}

.swal2-confirm-gemstone {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.swal2-cancel-gemstone {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 6px;
}


/* === KUNDALI ORDER FORM === */
.kundali-order-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.08);
    border: 1px solid rgba(62, 39, 35, 0.1);
}

.kundali-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-family: var(--font-body, 'Poppins', sans-serif);
    font-weight: 500;
    color: #3E2723;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid rgba(62, 39, 35, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #FAFAFA;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #D35400;
    /* Saffron */
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.kundali-submit-btn {
    background: linear-gradient(135deg, #8D6E63 0%, #3E2723 100%);
    color: #FFF;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
}

.kundali-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .gemstone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gemstone-grid {
        grid-template-columns: 1fr;
    }

    .kundali-form-grid {
        grid-template-columns: 1fr;
    }

    .kundali-order-wrapper {
        padding: 20px;
    }
}


/* === Consultation Card Redesign (Reference Image) === */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    /* 5 items row typically */
    gap: 30px;
    /* Spacings */
    padding: 40px 0;
    justify-content: center;
}

.consultation-card {
    background: #FFFCF7;
    /* Light cream */
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.05);
    /* Soft shadow */
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 240px;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.1);
    border-color: rgba(62, 39, 35, 0.05);
}

.consultation-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #F3E5D0;
    /* Beige pill */
    color: #3E2723;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.consultation-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    margin-top: 15px;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(230, 126, 34, 0.2));
}

.consultation-title-en {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #3E2723;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.consultation-title-np {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #8D6E63;
    /* Muted brown */
    font-size: 0.9rem;
    font-weight: 500;
}

/* Specific Section Title Override if needed */
.section-title.consultation-header {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    color: #3E2723;
    font-weight: 400;
    /* Regular weight often looks more premium for large headers */
    letter-spacing: 1px;
}


/* Updated Header for Consultation Services */
.consultation-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.consultation-header .sanskrit-surtitle {
    color: #D35400;
    /* Saffron/Orange */
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.consultation-header .main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    /* Cinzel is naturally bold-ish */
    margin: 10px 0 20px;
}

.consultation-header .title-divider {
    width: 60px;
    height: 2px;
    background: #5D4037;
    margin: 0 auto 20px;
}

.consultation-header .sub-text {
    font-family: 'Poppins', sans-serif;
    color: #5D4037;
    font-size: 1rem;
    font-weight: 400;
}

/* Card Card Updates to match image */
.service-tile {
    background: #FDFBF7;
    /* Very light cream/white */
    border: none;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.12);
}

.service-tile .price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #EFEBE9;
    /* Light beige pill */
    color: #5D4037;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: none;
}

.service-tile .tile-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #D35400, #EF6C00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.service-tile .tile-title-en {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.service-tile .tile-title-np {
    color: #8D6E63;
    font-size: 0.9rem;
    margin-top: 0;
}


/* Alignment Fix for Consultation Header */
.consultation-header {
    text-align: left;
    /* Align to left as per reference */
    margin-bottom: 40px;
    padding-left: 10px;
    /* Slight padding to align with grid */
}

.consultation-header .title-divider {
    display: none;
    /* Remove divider to match reference */
}

.consultation-header .main-title {
    margin: 5px 0 10px;
    /* Adjust spacing */
}

.om-decoration {
    display: none;
    /* Hide Om symbol if it conflicts with left alignment or isn't in reference */
}


/* Updated Header for Consultation Services - Centered */
.consultation-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultation-header .sanskrit-surtitle {
    color: #D35400;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.consultation-header .main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin: 0 0 20px;
}

.consultation-header .title-divider {
    display: block !important;
    width: 70px;
    height: 3px;
    background-color: #5D4037;
    margin: 0 auto 20px;
    opacity: 0.8;
}

.consultation-header .sub-text {
    font-family: 'Poppins', sans-serif;
    color: #5D4037;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}


/* ============================================
   HERO SPLIT SECTION - Elegant Vedic Design
   ============================================ */

.hero-split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #FBF3E4;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-zodiac-bg {
    position: absolute;
    top: 50%;
    right: -18vw;
    /* Positioned ~65-70% off-screen on the right */
    transform: translateY(-50%);
    width: 45vw;
    max-width: 600px;
    opacity: 0.05;
    /* Be extremely subtle (4-6%) */
    animation: rotate-simple 200s linear infinite;
    z-index: 1;
    pointer-events: none;
    filter: sepia(20%) saturate(120%) brightness(0.95);
}

@keyframes rotate-simple {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-split-container {
    display: flex;
    align-items: flex-start;
    /* Aligned to top for manual offset */
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 115px 4% 80px;
    /* Shifted up from 140px */
    gap: 100px;
    position: relative;
    z-index: 10;
}

/* LEFT COLUMN - Content */
.hero-left {
    flex: 1.2;
    max-width: 650px;
    text-align: left;
}

.hero-sanskrit {
    font-family: 'Noto Sans Devanagari', serif;
    font-size: 1.15rem;
    color: #D4AF37;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #3E2723;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title .welcome-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.35em;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 5px;
    display: block;
    margin-bottom: 2px;
    line-height: 1.2;

    /* Reset gradient to solid elegant color */
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--secondary);
    text-shadow: none;
}

.hero-subtitle-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #5D4037;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

.hero-subtitle-new span {
    color: #D4AF37;
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid #D4AF37;
    /* var(--gold) */
    color: #D4AF37;
    /* var(--gold) */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background: #D4AF37;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Social Media Icons */
.hero-socials {
    display: flex;
    justify-content: flex-start;
    /* Aligned left */
    gap: 18px;
    margin-bottom: 30px;
}

.hero-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.hero-socials a:hover {
    background: #D4AF37;
    color: #FFF;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Contact Info */
.hero-contact {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #6D4C41;
}

.hero-contact p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligned left */
    gap: 12px;
    margin-bottom: 12px;
}

.hero-contact i {
    color: #D4AF37;
    font-size: 0.95rem;
    width: 20px;
    opacity: 0.8;
}

/* RIGHT COLUMN - Service Cards (Aligned with Subtitle) */
.hero-right {
    flex: 0.8;
    max-width: 450px;
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    /* Adjusted upward to be closer to center */
}

/* Service Card Styling - CTA Cards (Decreased Size) */
.hero-service-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

/* Wrapper for Flip Effect */
.hero-service-card {
    position: relative;
    width: 100%;
    display: block;
    text-decoration: none;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Removed padding/border/bg from here as they move to faces */
}

/* Unique Hover Themes - Matching Website UI (Gold & Saffron) */
.hero-service-card:hover {
    transform: translateY(-3px) scale(1.02);
    z-index: 5;
}

/* The Flipper Container */
.flipper {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "card";
    transform-style: preserve-3d;
    animation: servicePillFlip 8s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

/* Pause animation on hover for readability */
.hero-service-card:hover .flipper {
    animation-play-state: paused;
}

/* Faces */
.flip-face {
    grid-area: card;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 100%;
}

.flip-face.front {
    transform: rotateX(0deg);
    z-index: 2;
}

.flip-face.back {
    transform: rotateX(180deg);
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Hover Effects Propagated to Faces */
.hero-service-card:hover .flip-face {
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.1);
    background: #FFFFFF;
    border-color: rgba(212, 175, 55, 0.3);
}

.hero-service-card.card-life:hover .flip-face {
    border-color: rgba(212, 175, 55, 0.5);
}

.hero-service-card.card-kundali:hover .flip-face {
    border-color: rgba(210, 105, 30, 0.5);
}

.hero-service-card.card-gemstone:hover .flip-face {
    border-color: rgba(184, 134, 11, 0.5);
}

.hero-service-card.card-vaastu:hover .flip-face {
    border-color: rgba(139, 69, 19, 0.5);
}

/* Keyframes for Auto Flip */
@keyframes servicePillFlip {

    0%,
    45% {
        transform: rotateX(0deg);
    }

    50%,
    95% {
        transform: rotateX(180deg);
    }

    100% {
        transform: rotateX(360deg);
    }
}

.service-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.04) 100%);
    color: #B8860B;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    /* Ensure icon isn't flattened */
    transform: translateZ(1px);
}

/* Inner dot for eclipse */
.service-card-icon::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: #FFF;
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Halo ring on hover */
.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0.8);
    z-index: 0;
}

.hero-service-card:hover .service-card-icon {
    color: #FFF;
    transform: scale(1.05);
}

/* Apply specific thematic backgrounds and halos based on card type */
.card-life:hover .service-card-icon {
    background: #D4AF37;
    /* Unified Vedic Gold */
}

.card-life:hover .service-card-icon::before {
    border-color: rgba(212, 175, 55, 0.6);
}

.card-kundali:hover .service-card-icon {
    background: #D2691E;
    /* Chocolate/Saffron Accent */
}

.card-kundali:hover .service-card-icon::before {
    border-color: rgba(210, 105, 30, 0.6);
}

.card-gemstone:hover .service-card-icon {
    background: #B8860B;
    /* Deep Spiritual Gold */
}

.card-gemstone:hover .service-card-icon::before {
    border-color: rgba(184, 134, 11, 0.6);
}

/* Show the eclipse layers */
.hero-service-card:hover .service-card-icon::after {
    width: 20px;
    height: 20px;
    opacity: 1;
}

.hero-service-card:hover .service-card-icon::before {
    opacity: 1;
    transform: scale(1.1);
}

.hero-service-card:hover .service-card-icon i {
    color: #3E2723;
    /* Icon matches darker theme over white dot */
    z-index: 3;
    position: relative;
    font-size: 1.1rem;
    /* Slightly smaller to fit in the dot */
}

.service-card-text {
    flex: 1;
}

.service-card-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    /* Decreased size */
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.service-card-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    /* Decreased size */
    color: #8D6E63;
    margin: 0;
    line-height: 1.3;
    opacity: 0.8;
}

.service-card-arrow {
    color: #D4AF37;
    font-size: 1rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.hero-service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(6px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-split {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-split-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        /* Ensure hero-left comes first */
    }

    .hero-sanskrit {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 10px;
    }

    .hero-subtitle-new {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        margin-bottom: 14px;
    }

    .hero-cta-buttons {
        justify-content: center;
        width: 100%;
        margin-bottom: 0;
    }

    .hero-right {
        margin-top: 0;
        justify-content: center;
        width: 100%;
        max-width: 420px;
        order: 2;
        /* Ensure cards come after hero-left */
        padding-bottom: 10px;
    }

    .hero-service-cards {
        max-width: 100%;
        gap: 10px;
    }

    .hero-socials {
        justify-content: center;
        margin-bottom: 12px;
    }

    .hero-contact {
        text-align: center;
        margin-bottom: 10px;
    }

    .hero-contact p {
        justify-content: center;
    }

    .hero-zodiac-bg {
        top: 20%;
        right: -10%;
        width: 70vw;
        opacity: 0.04;
    }

    /* Disable flip animation on tablet - show only front face */
    .flipper {
        animation: none !important;
        transform: none !important;
    }

    .flip-face.back {
        display: none !important;
    }

    .flip-face.front {
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .hero-split {
        padding: 70px 0 30px;
        min-height: auto;
    }

    .hero-split-container {
        padding: 0 16px;
        gap: 14px;
    }

    .hero-sanskrit {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
        opacity: 0.85;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }

    .hero-title .welcome-text {
        font-size: 0.5em;
        letter-spacing: 2px;
        margin-bottom: 2px;
    }

    .hero-subtitle-new {
        font-size: 0.85rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .hero-socials {
        gap: 10px;
        margin-bottom: 10px;
    }

    .hero-socials a {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .hero-contact {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .hero-contact p {
        margin-bottom: 5px;
        gap: 6px;
    }

    /* Buttons Stack on Mobile */
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px !important;
        margin-bottom: 0;
    }

    .hero-cta-buttons .btn,
    .hero-cta-buttons .hero-btn,
    .hero-cta-buttons .hero-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Service Cards - Mobile Optimized */
    .hero-right {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .hero-service-cards {
        gap: 8px;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-service-card {
        width: 100%;
        margin: 0;
    }

    /* Completely disable 3D flip on mobile - causes rendering issues */
    .flipper {
        animation: none !important;
        transform: none !important;
        transform-style: flat !important;
        perspective: none !important;
    }

    .flip-face {
        backface-visibility: visible !important;
        transform: none !important;
        padding: 12px 14px;
        border-radius: 12px;
        gap: 10px;
    }

    .flip-face.back {
        display: none !important;
        visibility: hidden !important;
    }

    .flip-face.front {
        position: relative !important;
        transform: none !important;
    }

    .service-card-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85rem;
    }

    .service-card-text h3 {
        font-size: 0.85rem;
    }

    .service-card-text p {
        font-size: 0.7rem;
    }

    .service-card-arrow {
        font-size: 0.8rem;
    }

    .hero-zodiac-bg {
        width: 80vw;
        top: 10%;
        right: -15%;
        opacity: 0.03;
    }
}

/* Medium mobile devices (480px and down) */
@media (max-width: 480px) {
    .hero-split {
        padding: 68px 0 25px;
    }

    .hero-split-container {
        padding: 0 14px;
        gap: 12px;
    }

    .hero-sanskrit {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-new {
        font-size: 0.82rem;
    }

    .hero-socials a {
        width: 32px;
        height: 32px;
    }

    .hero-contact {
        font-size: 0.8rem;
    }

    .hero-cta-buttons .btn {
        padding: 9px 15px;
        font-size: 0.82rem;
    }

    .flip-face {
        padding: 11px 13px;
        gap: 9px;
    }

    .service-card-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 0.82rem;
    }

    .service-card-text h3 {
        font-size: 0.82rem;
    }

    .service-card-text p {
        font-size: 0.68rem;
    }

    .hero-service-cards {
        gap: 7px;
    }
}

/* Extra small devices (phones, 375px and down) */
@media (max-width: 375px) {
    .hero-split {
        padding: 65px 0 20px;
    }

    .hero-split-container {
        padding: 0 12px;
        gap: 10px;
    }

    .hero-sanskrit {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
        margin-bottom: 3px;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-subtitle-new {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .hero-socials {
        margin-bottom: 8px;
    }

    .hero-socials a {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }

    .hero-contact {
        font-size: 0.75rem;
    }

    .hero-contact p {
        margin-bottom: 4px;
    }

    .hero-cta-buttons {
        gap: 6px !important;
    }

    .hero-cta-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .flip-face {
        padding: 10px 12px;
        gap: 8px;
    }

    .service-card-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8rem;
    }

    .service-card-text h3 {
        font-size: 0.78rem;
    }

    .service-card-text p {
        font-size: 0.65rem;
    }

    .hero-right {
        margin-bottom: 10px;
    }

    .hero-service-cards {
        gap: 6px;
    }
}

/* ============================================
   HERO SECTION - Updated with Zodiac Wheel
   ============================================ */

.hero-right-zodiac {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 550px;
}

.zodiac-wheel-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.zodiac-wheel-hero {
    width: 100%;
    height: auto;
    opacity: 0.9;
    animation: rotate-zodiac 60s linear infinite;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3)) sepia(15%) saturate(120%);
}

@keyframes rotate-zodiac {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-subtitle-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #5D4037;
    margin-bottom: 25px;
}

.hero-subtitle-new span {
    color: #D4AF37;
    font-weight: 600;
}

/* ============================================
   SERVICES SLIDER SECTION - Horizontal Carousel
   ============================================ */

.services-slider-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FDFBF7 0%, #F5EFE6 100%);
    overflow: hidden;
}

.services-carousel {
    padding: 20px 0 40px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.services-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.services-carousel-track {
    display: flex;
    gap: 30px;
    padding: 20px 60px;
    width: max-content;
}

.service-slider-card {
    display: flex;
    align-items: stretch;
    min-width: 380px;
    max-width: 420px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    text-decoration: none;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(62, 39, 35, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.slider-card-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slider-card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3E2723;
    margin-bottom: 10px;
}

.slider-card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #8D6E63;
    line-height: 1.6;
    margin-bottom: 15px;
}

.slider-card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-slider-card:hover .slider-card-link {
    gap: 12px;
    color: #C49B2F;
}

.slider-card-icon {
    width: 120px;
    min-width: 120px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.slider-card-icon i {
    font-size: 3rem;
    color: #D4AF37;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.service-slider-card:hover .slider-card-icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* ============================================
   DAILY HOROSCOPE / RASHIFAL SECTION
   ============================================ */

.rashifal-section {
    padding: 80px 0;
    background: #FDFBF7;
    position: relative;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.zodiac-card {
    background: #FFFFFF;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.zodiac-card:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.zodiac-symbol {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 10px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.zodiac-card:hover .zodiac-symbol {
    transform: scale(1.15);
}

.zodiac-name {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zodiac-name-np {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.85rem;
    color: #8D6E63;
    margin: 0;
}

/* Responsive: Zodiac Grid */
@media (max-width: 1200px) {
    .zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .zodiac-card {
        padding: 20px 10px;
    }

    .zodiac-symbol {
        font-size: 2rem;
    }

    .zodiac-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-carousel-track {
        padding: 20px 20px;
    }

    .service-slider-card {
        min-width: 300px;
        flex-direction: column;
    }

    .slider-card-icon {
        width: 100%;
        min-width: 100%;
        height: 100px;
        border-left: none;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }
}

/* Responsive: Hero Section */
@media (max-width: 1024px) {
    .hero-right-zodiac {
        max-width: 100%;
        margin-top: 40px;
    }

    .zodiac-wheel-container {
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .zodiac-wheel-container {
        max-width: 280px;
    }

    .rashifal-section {
        padding: 60px 0;
    }

    .services-slider-section {
        padding: 60px 0;
    }
}


/* ============================================
   MAJOR SERVICES SLIDER - Compact Horizontal
   ============================================ */

.major-services-slider {
    padding: 30px 0;
    background: linear-gradient(180deg, #F8F4ED 0%, #FDFBF7 100%);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.major-slider-track {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.major-service-slide {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 28px 18px 20px;
    background: #FFFFFF;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    flex: 1;
    max-width: 350px;
}

.major-service-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(62, 39, 35, 0.12);
    border-color: #D4AF37;
}

.major-service-slide .slide-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    color: #D4AF37;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.major-service-slide:hover .slide-icon {
    background: linear-gradient(135deg, #D4AF37 0%, #C49B2F 100%);
    color: #FFF;
    transform: scale(1.05);
}

.major-service-slide .slide-content {
    flex: 1;
}

.major-service-slide .slide-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #3E2723;
    margin: 0 0 3px 0;
    transition: color 0.3s ease;
}

.major-service-slide:hover .slide-content h3 {
    color: #D4AF37;
}

.major-service-slide .slide-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #8D6E63;
    margin: 0;
    line-height: 1.4;
}

.major-service-slide .slide-arrow {
    color: #D4AF37;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.major-service-slide:hover .slide-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Mobile: Horizontal scroll */
@media (max-width: 900px) {
    .major-slider-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 15px 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .major-service-slide {
        scroll-snap-align: start;
        flex: 0 0 auto;
        min-width: 280px;
    }

    .major-services-slider {
        overflow: visible;
    }
}

@media (max-width: 600px) {
    .major-service-slide {
        min-width: 260px;
        padding: 15px 22px 15px 15px;
    }

    .major-service-slide .slide-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.1rem;
    }

    .major-service-slide .slide-content h3 {
        font-size: 0.9rem;
    }
}


/* ============================================
   RASHIFAL SECTION - Enhanced Styling
   ============================================ */

.rashifal-section {
    padding: 60px 0 80px;
    background: #FBF3E4;
    position: relative;
}

.rashifal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.zodiac-card {
    background: #FFFFFF;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zodiac-card:hover {
    transform: translateY(-6px);
    border-color: #D4AF37;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.zodiac-card:hover::before {
    opacity: 1;
}

.zodiac-symbol {
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.zodiac-card:hover .zodiac-symbol {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.zodiac-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3E2723;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.zodiac-card:hover .zodiac-name {
    color: #4A2C2A;
}

.zodiac-name-np {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.8rem;
    color: #8D6E63;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Responsive: Zodiac Grid */
@media (max-width: 1200px) {
    .zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .zodiac-card {
        padding: 18px 10px;
    }

    .zodiac-symbol {
        font-size: 1.8rem;
    }

    .zodiac-name {
        font-size: 0.75rem;
    }

    .zodiac-name-np {
        font-size: 0.7rem;
    }

    .rashifal-section {
        padding: 50px 0 60px;
    }
}

@media (max-width: 480px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .zodiac-card {
        aspect-ratio: auto;
        padding: 20px 15px;
    }
}


/* ============================================
   INFINITE MARQUEE SERVICES SECTION
   ============================================ */

.services-marquee-section {
    padding: 40px 0;
    background: #FBF3E4;
    overflow: hidden;
    position: relative;
}

.services-marquee-section::before,
.services-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.services-marquee-section::before {
    left: 0;
    background: linear-gradient(90deg, #F5EFE6 0%, transparent 100%);
}

.services-marquee-section::after {
    right: 0;
    background: linear-gradient(270deg, #F5EFE6 0%, transparent 100%);
}

.marquee-container {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 28px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(62, 39, 35, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    text-align: center;
}

.marquee-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 40px rgba(62, 39, 35, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.marquee-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 16px;
    color: #FFFFFF;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.marquee-card:hover .marquee-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.marquee-card-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #3E2723;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marquee-card-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #8D6E63;
    margin: 0;
    line-height: 1.4;
}


/* ============================================
   RASHIFAL SECTION V2 - Minimalist Grid
   ============================================ */

.rashifal-section-v2 {
    padding: 70px 0 90px;
    background: #FBF3E4;
    position: relative;
}

.rashifal-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

.rashifal-header {
    text-align: center;
    margin-bottom: 45px;
}

.rashifal-sanskrit {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.95rem;
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rashifal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #3E2723;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.rashifal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #8D6E63;
    margin: 0;
}

.zodiac-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.zodiac-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px 24px;
    background: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.zodiac-card-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zodiac-card-v2:hover {
    transform: scale(1.05);
    border-color: #D4AF37;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
}

.zodiac-card-v2:hover::after {
    opacity: 1;
}

.zodiac-icon-v2 {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.zodiac-icon-v2 svg {
    width: 100%;
    height: 100%;
}

.zodiac-card-v2:hover .zodiac-icon-v2 {
    transform: scale(1.1);
    color: #C49B2F;
}

.zodiac-label-v2 {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.zodiac-label-np {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 0.78rem;
    color: #8D6E63;
    position: relative;
    z-index: 1;
}

/* Responsive: Rashifal Grid V2 */
@media (max-width: 1200px) {
    .zodiac-grid-v2 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .zodiac-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .zodiac-card-v2 {
        padding: 22px 12px 18px;
    }

    .zodiac-icon-v2 {
        width: 44px;
        height: 44px;
    }

    .rashifal-section-v2 {
        padding: 50px 0 70px;
    }
}

@media (max-width: 480px) {
    .zodiac-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .zodiac-card-v2 {
        padding: 20px 10px 16px;
    }

    .zodiac-icon-v2 {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }

    .zodiac-label-v2 {
        font-size: 0.65rem;
    }

    .zodiac-label-np {
        font-size: 0.7rem;
    }

    .marquee-card {
        min-width: 150px;
        padding: 18px 20px;
    }

    .marquee-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* ============================================
   SIMPLE SLIDING SERVICES BAR
   ============================================ */

.services-slider-bar {
    padding: 20px 0;
    background: transparent;
    overflow: hidden;
    position: relative;
}

.slider-bar-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slide-bar 30s linear infinite;
    padding: 12px 0;
}

.slider-bar-track:hover {
    animation-play-state: paused;
}

@keyframes slide-bar {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(62, 39, 35, 0.12);
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.05);
}

.slider-bar-item:hover {
    background: #FFFFFF;
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.12);
}

.slider-bar-item i {
    color: #D4AF37;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.slider-bar-item span {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   RASHIFAL SECTION - Matching Services Style
   ============================================ */

.rashifal-section {
    padding: 60px 0 80px;
    background: transparent;
    position: relative;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.zodiac-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 25px 30px !important;
    background: linear-gradient(145deg, #FFFCF9 0%, #F8F3EB 100%) !important;
    border: 1px solid rgba(93, 64, 55, 0.06) !important;
    border-radius: 16px !important;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.03) !important;
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.zodiac-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.12) !important;
    background: linear-gradient(145deg, #FFFFFF 0%, #FAF7F2 100%) !important;
    border-color: rgba(62, 39, 35, 0.15) !important;
}

.zodiac-card:hover::before {
    opacity: 1;
}

.zodiac-icon-v2 {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.zodiac-card:hover .zodiac-symbol {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.zodiac-name {
    color: #3E2723 !important;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: var(--font-header);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.zodiac-card:hover .zodiac-name {
    color: #3E2723;
}

.zodiac-name-np {
    color: #A67C52 !important;
    font-size: 0.8rem;
    font-family: var(--font-sanskrit);
    opacity: 0.9;
    margin-top: 4px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Responsive: Zodiac Grid */
@media (max-width: 992px) {
    .zodiac-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }

    .zodiac-card {
        padding: 30px 20px 25px !important;
    }

    .zodiac-icon-v2 {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .zodiac-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .zodiac-card {
        padding: 25px 15px 20px !important;
        border-radius: 12px !important;
    }

    .zodiac-icon-v2 {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .zodiac-name {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }

    .zodiac-name-np {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .zodiac-card {
        padding: 20px 12px 18px !important;
    }

    .zodiac-icon-v2 {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .zodiac-name {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .zodiac-name-np {
        font-size: 0.6rem;
    }
}



/* ============================================
   RASHIFAL MODAL & DETAILS
   ============================================ */

.rashifal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 20, 15, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.rashifal-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.rashifal-modal-content {
    background: #FBF3E4;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.rashifal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: #8D6E63;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
    background: none;
    border: none;
}

.rashifal-modal-close:hover {
    color: #D4AF37;
}

/* Tabs */
.rashifal-tabs {
    display: flex;
    border-bottom: 1px solid rgba(62, 39, 35, 0.1);
    background: #FFF;
    padding: 0 20px;
    overflow-x: auto;
}

.rashifal-tab {
    padding: 18px 25px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #8D6E63;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.rashifal-tab:hover {
    color: #D4AF37;
}

.rashifal-tab.active {
    color: #3E2723;
    border-bottom-color: #D4AF37;
}

/* Modal Body */
.rashifal-body {
    padding: 40px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.rashifal-info h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #3E2723;
    margin: 0 0 10px 0;
}

.rashifal-meta {
    background: #FFF;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.rashifal-meta-item {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #5D4037;
}

.rashifal-meta-item strong {
    color: #3E2723;
    font-weight: 700;
    margin-right: 5px;
}

.rashifal-text {
    font-family: 'Poppins', sans-serif;
    color: #5D4037;
    line-height: 1.7;
    font-size: 1rem;
}

.rashifal-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rashifal-large-icon {
    width: 250px;
    height: 250px;
    color: #D4AF37;
    opacity: 0.8;
}

/* Bottom Nav */
.rashifal-nav {
    border-top: 1px solid rgba(62, 39, 35, 0.1);
    padding: 20px 40px;
    background: #FFF;
}

.rashifal-nav h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #3E2723;
    margin: 0 0 15px 0;
}

.rashifal-nav-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.rashifal-nav-item {
    min-width: 80px;
    text-align: center;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
}

.rashifal-nav-item:hover,
.rashifal-nav-item.active {
    opacity: 1;
    transform: translateY(-3px);
}

.rashifal-nav-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    color: #D4AF37;
}

.rashifal-nav-name {
    font-size: 0.7rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #3E2723;
}

@media (max-width: 768px) {
    .rashifal-body {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }

    .rashifal-large-icon {
        width: 150px;
        height: 150px;
    }

    .rashifal-info h2 {
        font-size: 2rem;
        text-align: center;
    }

    .rashifal-image-container {
        order: -1;
    }
}

/* Rashifal Section V2 (Slider) */
.rashifal-section-v2 {
    padding: 100px 0;
    background: #FBF3E4;
    /* Matching premium light theme */
    position: relative;
    overflow: hidden;
    text-align: center;
}

.rashifal-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(166, 75, 42, 0.08);
    color: #A64B2A;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 1.1rem;
    border: 1px solid rgba(166, 75, 42, 0.15);
    font-family: 'Poppins', sans-serif;
}

.rashifal-slider {
    padding: 40px 15px 80px !important;
    margin: 0 -15px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.rashifal-card-v3 {
    height: 100%;
}

.rashifal-card-inner {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 45px rgba(62, 39, 35, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 400px;
    /* Increased card height */
    display: flex;
    flex-direction: column;
}

.rashifal-card-v3:hover .rashifal-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(62, 39, 35, 0.15);
    border-color: rgba(d4, af, 37, 0.5);
}

.rs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 20px;
}

.rs-icon-top-left {
    width: 65px;
    height: 65px;
    transition: transform 0.3s ease;
}

.rashifal-card-v3:hover .rs-icon-top-left {
    transform: scale(1.15) rotate(5deg);
}

.rs-icon-top-left img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rs-name-top-right {
    text-align: right;
}

.rs-name-row {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #3E2723;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.rs-name-row .sep {
    color: #D4AF37;
    font-size: 1.2rem;
}

.rs-name-row .np {
    font-family: 'Poppins', sans-serif;
    color: #A64B2A;
    font-size: 1.1rem;
    font-weight: 500;
}

.rs-prediction-full {
    font-size: 1rem;
    line-height: 1.8;
    color: #5D4037;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Showing more lines */
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Swiper Navigation Customization */
.rashifal-slider .swiper-button-next,
.rashifal-slider .swiper-button-prev {
    color: var(--gold, #D4AF37);
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.rashifal-slider .swiper-button-next::after,
.rashifal-slider .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 900;
}

.rashifal-slider .swiper-pagination-bullet-active {
    background: #A64B2A;
}

@media (max-width: 768px) {

    .rashifal-slider .swiper-button-next,
    .rashifal-slider .swiper-button-prev {
        display: none;
    }
}

/* --- Payment Page Responsive Grid --- */
.payment-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .payment-grid-layout {
        grid-template-columns: 1fr;
        /* Stack vertically on tablets and mobiles */
    }

    .payment-col {
        margin-bottom: 20px;
    }
}

.payment-col {
    display: flex;
    flex-direction: column;
}

/* Ensure glass panels inside take full height if needed */
.payment-col .glass-panel {
    width: 100%;
}

/* --- Payment Page Refined Components --- */

/* Navigation */
.payment-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 20px;
    gap: 15px;
}

@media (max-width: 576px) {
    .payment-nav {
        flex-direction: column;
        width: 100%;
    }

    .payment-nav .btn {
        width: 100%;
        justify-content: center;
    }
}

/* WhatsApp Button */
.payment-wa-btn {
    display: block;
    text-decoration: none;
    background: #EEDCC1;
    padding: 14px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(189, 164, 129, 0.3);
    box-shadow: 0 2px 10px rgba(62, 39, 35, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.12);
}

.payment-wa-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-wa-content .wa-title {
    color: #5D4037;
    font-family: var(--font-sanskrit, serif);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.payment-wa-content .wa-separator {
    opacity: 0.4;
    color: #8D6E63;
}

.payment-wa-content .wa-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #6D4C41;
    flex-grow: 1;
}

.payment-wa-content .wa-icon {
    background: #25D366;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

@media (max-width: 576px) {
    .payment-wa-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .payment-wa-content .wa-separator {
        display: none;
    }
}

/* Bank Details Table */
.bank-details-table {
    width: 100%;
    border-collapse: collapse;
}

.bank-details-table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bank-details-table tr:last-child {
    border-bottom: none;
}

.bank-details-table td {
    padding: 12px 0;
}

.bank-details-table .bank-label {
    font-size: 0.75rem;
    color: #8D6E63;
    font-weight: 600;
    text-transform: uppercase;
}

.bank-details-table .bank-value {
    font-size: 0.9rem;
    color: #3E2723;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
    /* Ensure wrapping on small screens */
}

/* QR Panel - Fully Covered */
.payment-qr-panel {
    flex: 1;
    padding: 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    background: #fff;
}

/* QR Display Area - Full Fill */
.qr-display-area {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    /* Internal spacing */
}

.qr-full-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: none;
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.qr-full-img.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: qrPopIn 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes qrPopIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Toggle Overlay - Top Right */
.qr-toggle-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.qr-mini-pill {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(62, 39, 35, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 4px;
    display: flex;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(62, 39, 35, 0.08);
}

.qr-mini-btn {
    background: transparent;
    border: none;
    padding: 6px 18px;
    border-radius: 40px;
    cursor: pointer;
    color: #8D6E63;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.qr-mini-btn:hover {
    color: #5D4037;
    background: rgba(62, 39, 35, 0.05);
}

.qr-mini-btn.active {
    background: #3E2723;
    color: #fff;
    box-shadow: 0 2px 8px rgba(62, 39, 35, 0.2);
}

@media (max-width: 576px) {
    .payment-qr-panel {
        min-height: 380px;
    }

    .qr-toggle-overlay {
        top: 15px;
        right: 15px;
    }

    .qr-display-area {
        padding: 20px;
    }
}

/* Summary Panel */
.payment-summary-panel {
    flex: 1;
    padding: 24px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.summary-header {
    text-align: center;
    margin-bottom: 16px;
}

.summary-header .sub-label {
    font-size: 0.72rem;
    color: #A1887F;
    display: block;
}

.summary-header .main-label {
    font-size: 1rem;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(212, 163, 115, 0.1);
    border-radius: 10px;
    margin-bottom: 16px;
}

.service-icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D4A373, #BC8A5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-icon-box .service-icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.service-text .service-title-en {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3E2723;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-text .service-title-np {
    font-size: 0.8rem;
    color: #8D6E63;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.summary-row .row-label {
    color: #6D4C41;
    font-size: 0.88rem;
}

.summary-row .row-value {
    font-weight: 700;
    color: #3E2723;
    font-size: 0.88rem;
    text-align: right;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    margin-top: 8px;
    border-top: 2px solid #D9C5A7;
}

.summary-total-row .total-label {
    color: #5D4037;
    font-size: 1rem;
    font-weight: 600;
}

.summary-total-row .total-value {
    font-weight: 800;
    color: #5D4037;
    font-size: 1.2rem;
}

/* Contact Section */
.payment-contact-section {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.payment-contact-section .contact-header {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3E2723;
    text-align: center;
    margin-bottom: 12px;
}

.payment-contact-section .contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    color: #3E2723;
    font-weight: 600;
    font-size: 0.88rem;
}

.payment-contact-section .contact-row i {
    color: #8D6E63;
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* === SPLIT INPUTS FOR DOB & TIME (ADDED VIA AGENT) === */
.split-inputs-container {
    display: grid;
    gap: 15px;
    margin-top: 5px;
}

.date-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.time-grid {
    grid-template-columns: 1fr 1fr 0.8fr;
}

.input-group-vedic {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group-vedic input {
    background: #FFF;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 8px;
    padding: 12px 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
    height: 48px;
    /* Remove Spinners */
    -moz-appearance: textfield;
}

.input-group-vedic input::-webkit-outer-spin-button,
.input-group-vedic input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-group-vedic input:focus {
    background: #FFF;
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.1);
    transform: translateY(-2px);
}

.input-label-sm {
    margin-top: 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--secondary);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tob-type-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tob-radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.tob-radio input {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
}

/* Common Toggle Styles */
.ampm-toggle-container,
.calendar-toggle-container {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(61, 43, 31, 0.2);
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
    /* Match input height */
    background: #FFF;
}



@media (max-width: 480px) {
    .split-inputs-container {
        gap: 10px;
    }

    .date-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
    }

    .input-group-vedic input {
        font-size: 1rem;
        padding: 10px 4px;
        border-radius: 8px;
    }

    .input-label-sm {
        font-size: 0.65rem;
    }

    .ampm-toggle-container {
        height: 48px;
    }
}

/* === FORM LAYOUT UPDATE: HORIZONTAL ALIGNMENT === */
.form-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.col-input {
    width: 100%;
}

@media (min-width: 600px) {
    .form-col {
        display: grid;
        grid-template-columns: 140px 1fr;
        align-items: start;
        grid-gap: 20px;
        gap: 20px;
    }

    .form-col>label {
        margin-top: 14px;
        /* Centering with 48px input height */
        font-weight: 600;
        color: #3E2723;
        line-height: 1.3;
    }

    /* Specific tweak for Tob radios alignment */
    .tob-type-selector {
        margin-top: 0;
        margin-bottom: 15px;
        display: flex;
        gap: 20px;
    }
}

/* Consistent Toggle Sizes & Colors */
.split-inputs-container {
    display: grid;
    gap: 15px;
    margin-top: 5px;
}

.date-grid {
    grid-template-columns: 1.5fr 1fr 1fr 85px;
    /* Fixed width for toggle */
}

.time-grid {
    grid-template-columns: 1fr 1fr 85px;
    /* Fixed width for toggle */
}

.ampm-btn,
.cal-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #8D6E63;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.ampm-btn:hover,
.cal-btn:hover {
    background: rgba(62, 39, 35, 0.05);
    color: #5D4037;
}

.ampm-btn.active,
.cal-btn.active {
    background: #3E2723;
    color: #FFF;
}

/* === Gender Alignment Fix === */
.radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
    min-height: 48px;
    /* Match input height so label aligns same as text inputs */
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #3E2723;
    font-weight: 500;
}

.radio-group input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    margin: 0;
}

/* === Place of Birth Horizontal Inputs === */
.pob-selects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    width: 100%;
}

@media (max-width: 768px) {
    .pob-selects {
        grid-template-columns: 1fr;
    }
}