/* ========================================================================
   ROOP ZAVERI — GLOBAL CSS
   Premium Personal Branding Website
   Ancient + Timeless • Modern Craft
   ======================================================================== */

@font-face {
    font-family: 'IM FELL Great Primer';
    src: url('./assets/fonts/IM_FELL_Great_Primer_Italic.woff2') format('woff2'),
        url('./assets/fonts/IM_FELL_Great_Primer_Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IM FELL Great Primer';
    src: url('./assets/fonts/IM_FELL_Great_Primer_Roman.woff2') format('woff2'),
        url('./assets/fonts/IM_FELL_Great_Primer_Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* -------------------------------------------------------------------------
   ROOT TOKENS
   ------------------------------------------------------------------------- */
:root {
    /* Container */
    --container: 1320px;
    --container-xxl: 1620px;
    --container-full: 1700px;
    --container-pad: clamp(1.25rem, 4vw, 3rem);

    /* Colors — Cream Parchment Palette */
    --cream-base: #FAF7F2;
    --cream-warm: #F5F0E6;
    /* --cream-deep: #EDE5D8; */
    --cream-deep: #e3a867;
    /* --paper: #FFFEF9; */
    --paper: #fff1D9;
    --ink: #2C2418;
    --ink-muted: #2f2a22;
    /* --ink-soft: #8A7E6D; */
    --ink-soft: #a36a26;
    /* --gold-muted: #C4A35A; */
    --gold-muted: #a36a26;
    --gold-warm: #D4B06A;
    --plum: #4A2B0A;
    --plum-glow: rgba(74, 43, 10, 0.35);
    --plum-soft: rgba(74, 43, 10, 0.12);
    --overlay-dark: rgba(44, 36, 24, 0.4);
    --overlay-cream: rgba(250, 247, 242, 0.85);

    /* Typography */
    /* --font-serif: "Merriweather", serif; */
    --font-serif: 'IM FELL Great Primer', serif;
    --font-mantra-serif: "Kalam", cursive;
    /* --font-mantra-serif: var(--font-serif); */
    /* --font-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif; */
    /* --font-sans: "Google Sans", -apple-system, BlinkMacSystemFont, sans-serif; */
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --heading-color: rgba(0, 0, 0, 0.85);

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 10rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.06);
    --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.08);
    --shadow-lg: 0 8px 30px rgba(44, 36, 24, 0.1);
    --shadow-xl: 0 16px 50px rgba(44, 36, 24, 0.12);
    --shadow-glow: 0 0 40px var(--plum-glow);

    /* Blur */
    --blur-sm: 4px;
    --blur-md: 12px;
    --blur-lg: 24px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-med: 300ms;
    --duration-slow: 500ms;

    /* Grid */
    --grid-cols: 12;
    --grid-gap: clamp(1rem, 2vw, 2rem);

    /* Swiper */
    --swiper-pagination-bullet-horizontal-gap: 7px;
    --swiper-pagination-bottom: 29px;
}

/* -------------------------------------------------------------------------
   BASE RESET
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    background-color: transparent;
    /* background-image: url('../img/bg-old-papper.webp'); */
    background-image: url('./assets/img/bg-old-papper_op.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* -------------------------------------------------------------------------
   TYPOGRAPHY SYSTEM
   ------------------------------------------------------------------------- */
.heading-display {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--heading-color);
}

.heading-xl {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.heading-lg {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.heading-sm {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.text-body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.375;
    color: var(--ink-muted);
}

.text-body-lg {
    font-size: 1.25rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-micro {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    color: var(--ink-soft);
    font-style: italic;
}

.text-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.text-vedic {
    font-family: var(--font-serif);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9em;
    color: var(--gold-muted);
}

/* -------------------------------------------------------------------------
   LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.container-narrow {
max-width: 900px;
}
.container-medium {
    max-width: 1040px;
}

.container-wide {
    max-width: 1600px;
}

.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Custom Grid */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

.grid-12 {
    grid-template-columns: repeat(12, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Flex helpers */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

/* Stack (vertical spacing) */
.stack>*+* {
    margin-top: var(--stack-space, var(--space-lg));
}

.stack-sm {
    --stack-space: var(--space-sm);
}

.stack-md {
    --stack-space: var(--space-md);
}

.stack-lg {
    --stack-space: var(--space-lg);
}

.stack-xl {
    --stack-space: var(--space-xl);
}

/* Section spacing */
.section {
    padding-block: var(--space-xl);
}

.section-lg {
    padding-block: var(--space-2xl);
}

/* -------------------------------------------------------------------------
   BACKGROUND STACK SYSTEM
   ------------------------------------------------------------------------- */
.bg-stack {
    position: relative;
}

.bg-transparent{background-color: transparent;}
.bg-none{background: none !important;}

/* .bg-stack::before,
.bg-stack::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
} */

/* Paper texture base */
/* .bg-paper::before {
    background-image: none;
    opacity: 0;
} */

/* Full-page zodiac background (disabled - using body bg) */
/* .bg-paper::after {
    background-image: none;
    opacity: 0;
} */

/* Zodiac watermark */
.bg-zodiac::after {
    background-image: none;
    background-position: center;
    opacity: 0.05;
    mix-blend-mode: overlay;
}

/* Celestial overlay */
.bg-celestial {
    position: relative;
}

.bg-celestial>.celestial-layer {
    position: absolute;
    inset: 0;
    background-image: none;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

/* Grain overlay */
.bg-grain::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* -------------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-full);
    transition: all var(--duration-med) var(--ease-out);
    white-space: nowrap;
}

.btn-primary-whatsapp {
    /* background: linear-gradient(135deg, #25D366 0%, #128C4E 100%); */
    background: linear-gradient(101.06deg, #075E54 0%, #128C4E 100%);
    color: white;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(37, 211, 102, 0);
    /* box-shadow: 0px 4px 12px 0px rgba(44, 36, 24, 0.08); */
}

.btn-primary-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-primary-whatsapp:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

.btn-secondary-book {
    background: var(--paper);
    /* background-color: #fff; */
    color: var(--ink);
    border: 1.5px solid var(--cream-deep);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-book:hover {
    background: var(--cream-warm);
    border-color: var(--gold-muted);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-book:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 3px;
}

.btn-ghost {
    background: transparent;
    color: var(--ink-muted);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--ink);
    background: var(--cream-deep);
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: var(--radius-full);
}

/* Dual Pricing Variant */
.astrology-dual-pricing {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-lg);
    margin-block: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    border: 1px solid rgba(163, 106, 38, 0.15);
    width: 100%;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.pricing-tier {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tier-time {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.tier-time small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 500;
    margin-top: 2px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    color: var(--plum);
}

.tier-price .currency {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 2px;
}

.tier-price .amount {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1;
}

.pricing-tier-divider {
    width: 1.5px;
    background: rgba(163, 106, 38, 0.2);
    align-self: stretch;
}

@media (max-width: 480px) {
    .astrology-dual-pricing {
        flex-direction: column;
        gap: var(--space-lg);
    }
    .pricing-tier-divider {
        width: 100%;
        height: 1px;
    }
}


/* -------------------------------------------------------------------------
   LUX SURFACE (Premium Card)
   ------------------------------------------------------------------------- */
.lux-surface {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--duration-med) var(--ease-out);
}

.lux-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.lux-surface:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.lux-surface.active,
.lux-surface:focus-within {
    border-color: var(--plum);
    box-shadow: var(--shadow-lg), 0 0 0 4px var(--plum-soft);
}

/* -------------------------------------------------------------------------
   TEXT NAV WITH ANIMATED UNDERLINE
   ------------------------------------------------------------------------- */
.text-nav {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.text-nav-item {
    position: relative;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: var(--space-sm) 0;
    cursor: pointer;
    transition: color var(--duration-med) var(--ease-out);
}

.text-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--plum);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-med) var(--ease-out);
}

.text-nav-item:hover {
    color: var(--ink);
}

.text-nav-item.active {
    color: var(--plum);
}

.text-nav-item.active::after {
    transform: scaleX(1);
}

/* -------------------------------------------------------------------------
   HEADER — CENTERED LOGO LAYOUT
   ------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-med) var(--ease-out);
    /* background: linear-gradient(180deg, #EDCFAF 0%, rgba(237, 207, 175, 0.6) 45.67%, rgba(237, 207, 175, 0) 100%); */
}
.site-header.scrolled{
    padding: var(--space-sm) 0 var(--space-xl);
    background: rgba(250, 247, 242, 0.92);
    /* background: linear-gradient(180deg, #faf2e7 50%, #faf2e7 66.67%, rgba(237, 207, 175, 0) 100%); */
    /* background: linear-gradient(180deg, #f2cc91 50%, #f2cc91 66.67%, rgba(237, 207, 175, 0) 100%); */
    background: linear-gradient(180deg, #A36A26 0%, rgba(163, 106, 38, 0.6) 41.98%, rgba(163, 106, 38, 0) 89.2%);
    /* backdrop-filter: blur(var(--blur-md)); */
    /* box-shadow: var(--shadow-sm); */
    transform:none;
    transition: all var(--duration-med) var(--ease-out);
}
.site-header.scrolled.scroll-up{
    transform:none;
}
.site-header.scrolled.scroll-down{
    transform: translate3d(0,-80px,0);
}
.site-header .container{
    max-width: var(--container-full);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Logo Wrapper with Sun Decoration */
.logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-sun {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url('./assets/img/sun-rays.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.logo {
    position: relative;
    z-index: 1;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.02em;
    max-width:320px;
}

/* Navigation - Left Side */
.nav-main {
    display: none;
    order: 1;
}

@media (min-width: 992px) {
    .nav-main {
        display: flex;
        gap: var(--space-lg);
    }
}
.site-header .nav-main a,
.nav-link {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: #000;
    transition: color var(--duration-fast) var(--ease-out);
}
.site-header .nav-main a:hover,
.nav-link:hover {
    color: var(--ink);
}

/* Logo Center */
.logo-wrap {
    order: 2;
    flex-shrink: 0;
}

/* CTA Buttons - Right Side */
.header-ctas {
    display: none;
    order: 3;
    gap: var(--space-sm);
}

@media (min-width: 992px) {
    .header-ctas {
        display: flex;
    }
}

.header-ctas .btn {
    padding: 0.5rem 1rem;
    /* font-size: 0.8125rem; */
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    order: 4;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--duration-fast) var(--ease-out);
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream-base);
    /* background: linear-gradient(180deg, #A36A26 0%, rgba(163, 106, 38, 0.6) 41.98%, rgba(163, 106, 38, 0) 89.2%);
    background:linear-gradient(180deg, #A36A26 60%, rgba(163, 106, 38, 0.9) 80%, rgba(163, 106, 38, 0) 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-med) var(--ease-out);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
}
.mobile-nav .mobile-nav-close{
    font-family: var(--font-mantra-serif);
    font-size: 3rem;
    line-height:1;
    font-weight: 400;
    color: var(--ink);
}
/* -------------------------------------------------------------------------
   DROPDOWN SYSTEM
   ------------------------------------------------------------------------- */
.nav-item-dropdown {
    position: relative;
}

.nav-link.has-dropdown {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    transition: transform var(--duration-med) var(--ease-out);
    opacity: 0.7;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: translateY(1px);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translateX(-50%) translateY(15px);
    background: var(--paper);
    min-width: 220px;
    padding: var(--space-sm) 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cream-deep);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-med) var(--ease-out);
    z-index: 1001;
    pointer-events: none;
    margin-top: 10px;
}

/* Invisible bridge for hover */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    color: var(--ink-muted);
    transition: all var(--duration-med) var(--ease-out);
    position: relative;
}

.dropdown-item:hover {
    background: var(--plum-soft);
    color: var(--plum);
    padding-left: calc(var(--space-lg) + 8px);
}

.dropdown-item::before {
    content: '✦';
    position: absolute;
    left: var(--space-sm);
    top: 50%;
    transform: translateY(-50%) scale(0);
    color: var(--gold-muted);
    transition: transform var(--duration-med) var(--ease-out);
    font-size: 0.75rem;
}

.dropdown-item:hover::before {
    transform: translateY(-50%) scale(1);
}

/* --- Mobile Dropdown --- */
.mobile-nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-link-wrap {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.mobile-dropdown-toggle {
    transition: transform var(--duration-med) var(--ease-out);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-right: -10px;
}

.mobile-nav-item-dropdown.open .mobile-dropdown-toggle {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-slow) var(--ease-out);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    margin-top: 0;
    opacity: 0;
}

.mobile-nav-item-dropdown.open .mobile-dropdown-menu {
    max-height: 400px;
    margin-top: var(--space-md);
    padding-bottom: var(--space-lg);
    opacity: 1;
    gap: var(--space-xs);
}

.mobile-nav-sublink {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding: 0.5rem 0;
}

.mobile-nav-link:has(+ .mobile-dropdown-toggle) {
    pointer-events: none; /* Let the wrap handle it for tap behavior */
}
/* Re-enable for second tap logic in JS */
.mobile-nav-link {
    cursor: pointer;
}

.mobile-nav-sublink::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 1px;
    background: var(--gold-muted);
    transform: translateX(-50%);
    opacity: 0.3;
}

.mobile-nav-sublink:last-child::after {
    display: none;
}

/* -------------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(250, 247, 242, 0.7) 0%,
            rgba(250, 247, 242, 0.85) 50%,
            rgba(250, 247, 242, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: var(--space-4xl);
}

.hero-eyebrow {
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-subtitle {
    margin-bottom: var(--space-xl);
    max-width: 600px;
}
.hero-subtitle-lg{
    max-width: 1200px;
}
.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-4xl);
}

.hero-bullet {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.125rem;
    color: var(--ink-muted);
}
.hero-bullets .hero-bullet{position:relative;padding-left:calc(12px + 16px);}
.hero-bullets .hero-bullet::before{content:"";position:absolute;left:5.5px;top:0;bottom:0;margin:auto 0;height:9px;width:9px;background-color:rgba(124, 68, 23, 1);border-radius:50rem;}
.hero-bullet svg {
    width: 20px;
    height: 20px;
    color: var(--gold-muted);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1rem;
    /* color: var(--ink-soft); */
    color: rgba(0,0,0,.7);
}

.hero-trust-item svg {
    width: 14px;
    height: 14px;
    /* opacity: 0.8; */
    color: rgba(0,0,0,.8);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.scroll-cue-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ink-soft);
}

.scroll-cue-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--ink-soft), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

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

/* -------------------------------------------------------------------------
   HERO REDESIGNED — NEW LAYOUT
   ------------------------------------------------------------------------- */
.hero-redesigned {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image - Hidden in hero, now on body */
.hero-bg-wrap {
    display: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rotating Zodiac Wheel - Top Right Corner */
.hero-zodiac-wheel {
    position: fixed;
    /* top: -300px;
    right: -300px; */
    top: -589px;
    right: -602px;
    width: 1200px;
    height: 1200px;
    z-index: 0;
    pointer-events: none;
    animation: rotateZodiac 120s linear infinite;
}

.zodiac-wheel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .5;
}

@keyframes rotateZodiac {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Container Layout */
.hero-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);

    max-width: var(--container-full);
    gap:0;
    grid-template-columns: 1fr 1fr .6fr;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Left Content */
.hero-content-left {
    max-width: 540px;
}
@media(min-width: 1201px) {
    /* .hero-content-left {
        min-width: 640px;
    } */
    .hero-content-left .hero-title {
        position: relative;
        z-index: 5;
        white-space:nowrap;
    }
}

@media (max-width: 1200px) {
    .hero-content-left {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Slider Wrapper - Center Right Area */
.hero-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 55px; */
}

@media (max-width: 1200px) {
    .hero-slider-wrap {
        margin-left: 0;
        margin-top: var(--space-xl);
    }
}

/* Masked Slider */
.hero-masked-slider {
    width: 495px;
    height: 715px;
    position: relative;
    overflow: hidden;
    border-radius: 308px 320px 10px 10px;
}

@media (max-width: 600px) {
    .hero-masked-slider {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 320 / 462;
    }
    .zodiac-wheel-img{opacity: .25;}
}

.hero-portrait-swiper {
    width: 100%;
    height: 100%;
}

.hero-portrait-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-portrait-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Moon Element */
.hero-planet-wrap {
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 192px;
    height: 167px;
    z-index: 10;
    transition: transform 0.1s ease-out;
    will-change: transform;
    /* overflow: hidden; */
}

.moon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1)); */
}

@media (max-width: 600px) {
    .hero-planet-wrap {
        width: 120px;
        height: 104px;
        bottom: 60px;
        left: -40px;
    }
}

/* Floating Taurus Symbol */
.hero-taurus-wrap {
    position: absolute;
    top: -40px;
    right: -50px;
    width: 204px;
    height: 204px;
    z-index: 10;
    animation: floatTaurus 3s ease-in-out infinite;
    will-change: transform;
    overflow:hidden;
}

.taurus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: drop-shadow(0 8px 24px rgba(196, 163, 90, 0.4)); */
}

@keyframes floatTaurus {

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

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

@media (max-width: 600px) {
    .hero-taurus-wrap {
        width: 100px;
        height: 100px;
        top: -86px;
        right: -24px;
    }
}

/* Destiny Text - Bottom Right */
.hero-destiny-text {
    position: absolute;
    /* bottom: 20px; */
    bottom: 50px;
    /* right: -160px; */
    right: 0px;
    z-index: 0;
    pointer-events: none;
}

.hero-destiny-text p {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 3vw, 4.125rem);
    font-style: italic;
    font-weight: 500;
    /* color: var(--ink-soft); */
    /* color:rgba(195, 177, 154, 0.6); */
    /* color: rgba(163,124,78,90%); */
    /* color: var(--heading-color); */
    color:rgba(179, 130, 86, 1);
    line-height: 1.3;
    text-align: start;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-destiny-text {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-xl);
        text-align: center;
    }

    .hero-destiny-text p {
        text-align: center;
    }
}

/* -------------------------------------------------------------------------
   LEGAL PAGES (Privacy / Terms)
   ------------------------------------------------------------------------- */
.legal-hero {
    position: relative;
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-2xl);
    text-align: center;
    overflow: hidden;
}

.legal-kicker {
    display: block;
    margin-bottom: var(--space-sm);
}

.legal-updated {
    margin-top: var(--space-lg);
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink-soft);
}

.legal-content {
    /* padding-top: 0; */
    padding-bottom: var(--space-4xl);
    position: relative;
    z-index: 2;
}

.legal-surface {
    position: relative;
}

/* Glass/Paper Card for Content */
/* .legal-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(196, 163, 90, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-med) var(--ease-out);
}

.legal-card:hover {
    box-shadow: var(--shadow-lg), 0 0 40px var(--plum-soft);
    border-color: rgba(196, 163, 90, 0.3);
    background: rgba(255, 255, 255, 0.85);
} */

.legal-section h2 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--plum);
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
    padding-bottom: var(--space-sm);
}

.legal-section h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ink);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-section p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-bottom: var(--space-md);
}

.legal-section ul {
    list-style: none;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.legal-section li {
    position: relative;
    margin-bottom: var(--space-xs);
    font-size: 1.0625rem;
    color: var(--ink-muted);
}

.legal-section li::before {
    content: "✦";
    position: absolute;
    left: -24px;
    color: var(--gold-muted);
    font-size: 0.8rem;
    top: 4px;
}

.legal-section strong {
    color: var(--ink);
    font-weight: 600;
}

.legal-cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-hero {
        padding-top: var(--space-3xl);
    }
    
    .legal-card {
        padding: var(--space-lg);
        border-radius: var(--radius-md);
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }
}

/* Animation Utilities */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

.signature-chapter {

    position: relative;
    min-height: 100vh;
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--cream-base) 0%, var(--cream-warm) 50%, var(--cream-base) 100%);
    overflow: hidden;
}

.signature-chapter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(74, 43, 10, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.signature-chapter-inner {
    position: relative;
    z-index: 1;
}

/* Enhanced Text Nav Menu */
.coverflow-menu {
    margin-bottom: var(--space-xl);
}

.coverflow-menu .text-nav {
    gap: var(--space-lg);
}

.coverflow-menu .text-nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coverflow-menu .text-nav-item::before {
    content: '•';
    margin-right: 0.5rem;
    opacity: 0.4;
    font-size: 0.75rem;
}

.coverflow-menu .text-nav-item:hover {
    color: var(--plum);
    background: var(--plum-soft);
}

.coverflow-menu .text-nav-item.active {
    color: var(--plum);
    background: var(--plum-soft);
}

.coverflow-menu .text-nav-item.active::after {
    display: none;
    /* Remove underline, use background instead */
}

/* 3D Stage with Enhanced Perspective */
.coverflow-stage {
    position: relative;
    width: 100%;
    height: 520px;
    perspective: 1800px;
    perspective-origin: 50% 40%;
    overflow: visible;
    margin-top: var(--space-lg);
}

@media (max-width: 768px) {
    .coverflow-stage {
        height: 420px;
        perspective: 1200px;
    }
}

.coverflow-container {
    width: 100%;
    height: 100%;
}

/* Enhanced Swiper for 3D Effect */
.coverflow-swiper {
    width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.coverflow-swiper .swiper-wrapper {
    align-items: center;
}

.coverflow-swiper .swiper-slide {
    width: 280px;
    height: 400px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

@media (min-width: 768px) {
    .coverflow-swiper .swiper-slide {
        width: 300px;
        height: 440px;
    }
}

/* Glassmorphism Card with Premium Feel */
.coverflow-card {
    width: 100%;
    height: 100%;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(250, 247, 242, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(44, 36, 24, 0.08),
        0 2px 8px rgba(44, 36, 24, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

/* Glow Animation */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px var(--plum-soft); }
    50% { box-shadow: 0 0 40px var(--plum-glow); }
}

.glow-animate {
    animation: glowPulse 4s ease-in-out infinite;
}

/* Inner glow gradient */
.coverflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 100%);
    pointer-events: none;
    border-radius: 24px 24px 0 0;
}

/* Subtle corner accent */
.coverflow-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(74, 43, 10, 0.08) 0%,
            transparent 60%);
    pointer-events: none;
}

/* Active card enhancement */
.swiper-slide-active .coverflow-card {
    border-color: rgba(74, 43, 10, 0.3);
    box-shadow:
        0 20px 60px rgba(74, 43, 10, 0.2),
        0 8px 25px rgba(44, 36, 24, 0.1),
        0 0 0 1px rgba(74, 43, 10, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Purple glow ring on active */
.swiper-slide-active .coverflow-card::before {
    background: linear-gradient(180deg,
            rgba(74, 43, 10, 0.05) 0%,
            transparent 50%);
}

/* Side cards styling */
.swiper-slide:not(.swiper-slide-active) .coverflow-card {
    opacity: 0.85;
}

/* Card content styling */
.coverflow-card-logo {
    font-family: var(--font-serif);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--plum);
    opacity: 0.7;
    margin-bottom: var(--space-md);
}

.coverflow-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
    color: var(--plum);
}

.coverflow-card-visual {
    width: 120px;
    height: 120px;
    margin-bottom: var(--space-lg);
    border-radius: 16px;
    background: linear-gradient(135deg, var(--plum-soft) 0%, rgba(74, 43, 10, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.coverflow-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coverflow-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.coverflow-card-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

/* Float animation keyframes for idle state */
@keyframes cardFloat {

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

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

/* Apply float animation via JS class */
.coverflow-card.floating {
    animation: cardFloat 5s ease-in-out infinite;
}

/* Different animation delays for breathing effect */
.swiper-slide:nth-child(1) .coverflow-card.floating {
    animation-delay: 0s;
}

.swiper-slide:nth-child(2) .coverflow-card.floating {
    animation-delay: -0.8s;
}

.swiper-slide:nth-child(3) .coverflow-card.floating {
    animation-delay: -1.6s;
}

.swiper-slide:nth-child(4) .coverflow-card.floating {
    animation-delay: -2.4s;
}

.swiper-slide:nth-child(5) .coverflow-card.floating {
    animation-delay: -3.2s;
}

/* CTA Button below carousel */
.coverflow-cta {
    margin-top: var(--space-2xl);
}

/* -------------------------------------------------------------------------
   HOW IT WORKS — Premium 3-Card Layout v2
   ------------------------------------------------------------------------- */
.how-it-works {
    position: relative;
    overflow: visible;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    /* max-width: 960px; */
    max-width: 64rem;
    margin-inline: auto;
    position: relative;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .how-steps {
        flex-direction: row;
        align-items: flex-end;
        gap: 0;
        padding: var(--space-xl) 0;
    }
}

/* Individual Card Styling */
.how-step {
    position: relative;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    /* background: linear-gradient(145deg, #FFFEF9 0%, #FAF7F2 100%); */
    /* background: linear-gradient(168.96deg, #FBE1B9 0%, #FAF6EF 100%); */
    background: linear-gradient(168.96deg, #DFA563 0%, #FFF7EB 100%);
    border-radius: 16px;
    text-align: center;
    z-index: 1;
    /* min-height: 260px; */
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    /* Double-line border effect */
    border: 1.5px solid rgba(196, 163, 90, 0.35);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.9),
        inset 0 0 0 5px rgba(196, 163, 90, 0.15),
        0 2px 8px rgba(44, 36, 24, 0.04),
        0 8px 24px rgba(44, 36, 24, 0.06),
        0 16px 48px rgba(44, 36, 24, 0.04);

    /* Smooth hover transition */
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle zodiac watermark */
.how-step::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    border-radius: 10px;
}

/* Hover effect */
.how-step:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.95),
        inset 0 0 0 5px rgba(196, 163, 90, 0.2),
        0 4px 12px rgba(44, 36, 24, 0.06),
        0 12px 32px rgba(44, 36, 24, 0.08),
        0 24px 56px rgba(44, 36, 24, 0.06),
        0 0 0 1px rgba(74, 43, 10, 0.08);
}

/* Desktop: Overlapping cards with center emphasis */
@media (min-width: 768px) {
    .how-step {
        /* width: 290px; */
        width: 20rem;
        flex-shrink: 0;
    }

    /* Card 01 - Left */
    .how-step:nth-child(1) {
        z-index: 2;
        margin-right: -28px;
        transform: rotate(-2deg) translateY(16px);
    }

    .how-step:nth-child(1):hover {
        transform: rotate(-2deg) translateY(8px);
    }

    /* Card 02 - Center (Primary) */
    .how-step:nth-child(2) {
        z-index: 4;
        transform: scale(1.06) translateY(-14px);
        /* background: linear-gradient(145deg, #FFFEF9 0%, #F8F4ED 100%); */
        box-shadow:
            inset 0 0 0 4px rgba(255, 254, 249, 0.95),
            inset 0 0 0 5.5px rgba(196, 163, 90, 0.22),
            0 4px 12px rgba(44, 36, 24, 0.05),
            0 12px 32px rgba(44, 36, 24, 0.08),
            0 24px 64px rgba(44, 36, 24, 0.06);
    }

    .how-step:nth-child(2):hover {
        transform: scale(1.08) translateY(-22px);
        box-shadow:
            inset 0 0 0 4px rgba(255, 254, 249, 1),
            inset 0 0 0 6px rgba(196, 163, 90, 0.25),
            0 6px 16px rgba(44, 36, 24, 0.06),
            0 16px 40px rgba(44, 36, 24, 0.1),
            0 32px 72px rgba(44, 36, 24, 0.08),
            0 0 0 2px rgba(74, 43, 10, 0.1);
    }

    /* Card 03 - Right */
    .how-step:nth-child(3) {
        z-index: 2;
        margin-left: -28px;
        transform: rotate(2deg) translateY(16px);
    }

    .how-step:nth-child(3):hover {
        transform: rotate(2deg) translateY(8px);
    }
}

/* Step Number */
.how-step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--heading-color);
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

/* Decorative divider */
.how-step-number::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.5), transparent);
    margin: var(--space-sm) auto var(--space-md);
}

/* Step Title */
.how-step-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
}

/* Step Description */
.how-step-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 230px;
    margin-inline: auto;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .how-step {
        transition: none;
    }

    .how-step:hover {
        transform: none;
    }
}

/* -------------------------------------------------------------------------
   LIFE CHALLENGES SECTION — 4 SOLUTION BOXES
   ------------------------------------------------------------------------- */
.life-challenges-section {
    background: transparent;
}
.life-challenges-section .__header{
    margin-bottom: var(--space-2xl);
}

.life-challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 600px) {
    .life-challenges-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.life-challenge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: transparent;
}

.life-challenge-icon {
    width: 112px;
    height: auto;
    margin-bottom: var(--space-lg);
    object-fit: contain;
}

.life-challenge-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
}

.life-challenge-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-inline: auto;
}

/* -------------------------------------------------------------------------
   ABOUT SECTION — COSMIC JOURNEY LAYOUT
   ------------------------------------------------------------------------- */
.about-journey {
    position: relative;
    /* padding: 0; */
    overflow: hidden;
    background: transparent;
}

.about-journey-inner {
    display: grid;
    min-height: 700px;
}

@media (min-width: 992px) {
    .about-journey-inner {grid-template-columns: 40% 60%;}
    .about-expectations-section .about-journey-inner{grid-template-columns: 60% 40%;}
    .about-expectations-section .about-journey-inner .about-journey-left{order:2;}
    .about-journey-title .section-eyebrow{justify-content:flex-start;}
}

@media (max-width: 991px) {
    .about-journey-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

/* Left Column: Title + Photo */
.about-journey-left {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.about-journey-title {
    padding: var(--space-2xl) var(--space-xl) var(--space-lg) 0;
}

@media (max-width: 991px) {
    .about-journey-title {
        padding: var(--space-xl) 0;
        text-align: center;
    }
}

.about-journey-title .heading-lg {
    margin-top: var(--space-xs);
}

/* Media Section */
.about-journey-media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 1;
    min-height: 600px;
    background: #0a0a0a;
    border-radius: 0 150px 0 0;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-journey-media,.tarot-expertise-section .about-journey-media{
        border-radius: 0;
        min-height: 450px;
        max-height:450px;
    }
}

.about-journey-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-journey-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.about-journey-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(174,120,55, 0.25);
    z-index: 1;
}

.about-journey-photo {
    position: relative;
    z-index: 2;
}

.about-journey-photo img {
    max-width: 100%;
    /* max-height: 500px; */
    object-fit: contain;
    object-position: bottom center;
}

/* Right: Content Area */
.about-journey-content {
    padding: var(--space-2xl) var(--space-xl) 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width: 992px) {
    .about-journey-content{padding: var(--space-3xl) var(--space-2xl) 0;}
   .about-expectations-section .about-journey-content{padding: 0 var(--space-2xl) 0 0; }
}

/* Header Section */
.about-journey-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--cream-deep);
    /* border-bottom: 1px solid #e3a867; */
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .about-journey-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.about-journey-intro .heading-md {
    margin-top: var(--space-xs);
}

/* Services List */
.about-journey-services {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-journey-item {
    display: grid;
    /* grid-template-columns: 70px 1fr auto; */
    grid-template-columns: 1fr auto;
    gap: var(--space-md);
    align-items: flex-start;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--cream-deep);
    /* border-bottom: 1px solid #e3a867; */
}

.about-journey-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-journey-icon {
    width: 70px;
    height: 80px;
    flex-shrink: 0;
}

.about-journey-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-xs);
}

.about-journey-item-content p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.about-journey-accent {
    font-size: 1rem;
    color: var(--ink);
    align-self: center;
}

/* -------------------------------------------------------------------------
   PARAMETRIC CARD FAN — Premium Arc Layout
   ------------------------------------------------------------------------- */
.fan-section {
    position: relative;
    padding: var(--space-xl) 0 var(--space-3xl);
    overflow: visible;
}
.fan-section-header{margin-top: var(--space-2xl);}
.fan-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 620px;
    perspective: 1200px;
}

.fan-deck {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.fan-card {
    position: absolute;
    width: var(--card-width, 359px);
    height: var(--card-height, 532px);
    transform-style: preserve-3d;
    transform-origin: bottom center;
    cursor: pointer;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s ease,
        opacity 0.35s ease;
    will-change: transform;
    opacity: 1 !important;
}

.fan-card-back,
.fan-card-front {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    /* object-fit: cover; */
    border-radius: 12px;
    box-shadow:
        0 2px 4px rgba(44, 36, 24, 0.04),
        0 6px 16px rgba(44, 36, 24, 0.06),
        0 16px 32px rgba(44, 36, 24, 0.05);
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.fan-card-back {
    z-index: 2;
    opacity: 1;
}

.fan-card-front {
    z-index: 1;
    opacity: 0;
}

.fan-card[data-index="4"]{z-index:7 !important;}
.fan-card[data-index="5"]{z-index:8 !important;}
.fan-card[data-index="6"]{z-index:9 !important;}

/* Hover: show black card */
.fan-card:hover {
    transform: var(--hover-transform) !important;
}

.fan-card:hover .fan-card-back {
    opacity: 0;
}

.fan-card:hover .fan-card-front {
    opacity: 1;
}

.fan-card:hover .fan-card-front {
    box-shadow:
        0 8px 20px rgba(74, 43, 10, 0.15),
        0 20px 40px rgba(44, 36, 24, 0.12),
        0 32px 64px rgba(44, 36, 24, 0.1);
}

/* Center card gets stronger shadow */
.fan-card[data-index="3"] .fan-card-back {
    box-shadow:
        0 4px 8px rgba(44, 36, 24, 0.06),
        0 12px 28px rgba(44, 36, 24, 0.1),
        0 24px 48px rgba(44, 36, 24, 0.08);
}

/* Responsive: Tablet */
@media (max-width: 1199px) {
    .fan-wrap {
        height: 480px;
    }

    .fan-card {
        --card-width: 200px;
        --card-height: 367px;
    }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
    .fan-wrap {
        height: 340px;
    }

    .fan-card {
        --card-width: 140px;
        --card-height: 257px;
    }
    .fan-card[data-index="0"]{visibility:hidden;opacity:0;}
    .fan-card[data-index="6"]{visibility:hidden;opacity:0;}
}

/* Keep old styles for other pages */
.about-preview {
    position: relative;
}

.about-preview-grid {
    display: grid;
    gap: var(--space-2xl);
    align-items: center;
}

@media (min-width: 768px) {
    .about-preview-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.about-image-wrap {
    position: relative;
}

.about-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.about-ornament {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    opacity: 0.08;
    z-index: 0;
}

.about-content-list {
    list-style: none;
}

.about-content-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
    color: var(--ink-muted);
}

.about-content-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-muted);
}

.ethics-line {
    font-style: italic;
    color: var(--ink-soft);
    border-left: 2px solid var(--gold-muted);
    padding-left: var(--space-md);
    margin-top: var(--space-lg);
}

/* -------------------------------------------------------------------------
   TESTIMONIALS — BENTO STYLE
   ------------------------------------------------------------------------- */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section .__header{
    margin-bottom: var(--space-2xl);
}
.testimonials-section .__footer{
    margin-top: var(--space-2xl);
}

.testimonials-bento {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    max-width: 1100px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .testimonials-bento {
        flex-direction: row;
        gap: var(--space-xl);
    }
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    flex: 1;
}

@media (min-width: 768px) {
    .testimonials-column-left {
        padding-top: 0;
    }

    .testimonials-column-right {
        padding-top: calc(var(--space-3xl) + var(--space-lg));
    }
}

.testimonial-bento-card {
    position: relative;
    /* background: var(--paper); */
    background: transparent url('./assets/img/old-paper.webp');
    background-size: cover;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    min-height:276px;
    display:flex;
    /* flex-direction:column; */
    justify-content:space-between;
    /* box-shadow: var(--shadow-md);
    box-shadow:
            inset 0 0 0 4px rgba(255, 254, 249, 0.95),
            inset 0 0 0 5.5px rgba(196, 163, 90, 0.22),
            0 4px 12px rgba(44, 36, 24, 0.05),
            0 12px 32px rgba(44, 36, 24, 0.08),
            0 24px 64px rgba(44, 36, 24, 0.06); */
    /* border: 1px solid rgba(237, 229, 216, 0.6); */
    transition: all var(--duration-med) var(--ease-out);
}



.testimonial-bento-quote {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* .testimonial-bento-quote::before {
    content: '"';
}

.testimonial-bento-quote::after {
    content: '';
} */

.testimonial-bento-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--cream-deep);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink);
}

.testimonial-author-location {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--ink-soft);
}

/* Read More Button */
.btn-testimonials-more {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--duration-med) var(--ease-out);
}

.btn-testimonials-more:hover {
    background: var(--ink);
    color: var(--paper);
}

/* -------------------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------------------- */
.faq-section{position: relative;}
.fan-section .container{max-width: var(--container-full);}
.faq-section .__header{margin-bottom: var(--space-2xl);}
.faq-list {
    max-width: 800px;
    margin-inline: auto;
}

.faq-item {
    /* border-bottom:1px solid #e3a867; */
    border-bottom: 1px solid var(--cream-deep);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: color var(--duration-fast) var(--ease-out);
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--duration-med) var(--ease-out);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-med) var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding-bottom: var(--space-lg);
    color: var(--ink-muted);
    line-height: 1.7;
}

/* -------------------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------------------- */
.final-cta {
    position: relative;
    text-align: center;
    padding: var(--space-2xl) 0;
}

/* .final-cta-content {
    max-width: 600px;
    margin-inline: auto;
} */

/* -------------------------------------------------------------------------
   FOOTER — DARK THEME WITH VIDEO BACKGROUND
   ------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    z-index: 5;
    /* padding: var(--space-3xl) 0 var(--space-xl); */
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + .25rem);
    background: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
}

/* Video Background */
.footer-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.footer-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* background: rgba(174,120,55, 0.25); */
    z-index: 1;
}

.site-footer::before {
    content: none;
}

.footer-main {
    position: relative;
    display: grid;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1.5fr 1fr;
        align-items: start;
    }
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: var(--space-md);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xs);
    line-height: 1.6;
}

.footer-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-text a:hover {
    color: #ffffff;
}

/* Footer Address Column */
.footer-address {
    text-align: left;
}

/* Footer Brand Center Column */
.footer-brand-center {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.footer-logo img{
    filter: brightness(0) invert(1);
margin:0 auto;max-width:300px;}

.footer-tagline {
    font-size: 1rem;
    /* font-style: italic; */
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: var(--space-md);
}

/* Footer Info Column */
.footer-info {
    text-align: right;
}

@media (max-width: 767px) {

    .footer-address,
    .footer-brand-center,
    .footer-info {
        text-align: center;
    }
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social-center {
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--duration-fast) var(--ease-out);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

@media (max-width: 767px) {
    .footer-social {
        justify-content: center;
    }
}

/* Footer Bottom Bar */
.footer-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    .footer-bottom.policy {
        padding-inline: 0;
        padding-block:var(--space-xs);
        flex-direction: row;
        justify-content: center;
    }
}

.footer-services {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    padding:var(--space-sm) 0;
}

.footer-service-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration-fast) var(--ease-out);
}

.footer-service-link:hover {
    color: #ffffff;
}
._serviceMenu{position:relative;z-index:2;padding-bottom:var(--space-lg);}
._serviceMenu a{
    font-size: 1rem;
    font-weight:500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--duration-fast) var(--ease-out);
}
._serviceMenu a:hover {
    color: #ffffff;
}
.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

.btn-footer-cta {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
}

.btn-footer-cta:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

/* Footer Copyright */
.footer-copyright {
    position: relative;
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}
.wa-stick{position:fixed;bottom:42px;right:10px;z-index: 1000;}
.wa-stick .btn{padding:0.75rem;}
.wa-stick .btn svg{height:26px;width:26px;}
@media(min-width:992px){
    .wa-stick{bottom:68px;right:30px;}
    .wa-stick .btn{padding:1rem;}
    .wa-stick .btn svg{height:36px;width:36px;}
}
/* -------------------------------------------------------------------------
   SERVICES PAGE
   ------------------------------------------------------------------------- */
.services-hero {
    padding: calc(var(--space-4xl) + 80px) 0 var(--space-3xl);
    text-align: center;
}

.service-block {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--cream-deep);
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-grid {
    display: grid;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.service-left {
    position: sticky;
    top: 120px;
}

.service-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--plum-soft);
    color: var(--plum);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.service-title {
    margin-bottom: var(--space-md);
}

.service-intro {
    margin-bottom: var(--space-lg);
}

.service-details h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    margin-top: var(--space-lg);
}

.service-details ul {
    padding-left: var(--space-lg);
}

.service-details li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
    color: var(--ink-muted);
}

.service-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-muted);
}

.service-ctas {
    margin-top: var(--space-xl);
}

/* Method callout */
.method-callout {
    padding: var(--space-xl);
    background: var(--paper);
    border: 1px solid var(--cream-deep);
    border-radius: var(--radius-lg);
    margin: var(--space-3xl) 0;
}

.method-callout h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* -------------------------------------------------------------------------
   ABOUT PAGE
   ------------------------------------------------------------------------- */
.about-hero{padding:calc(var(--space-3xl) + var(--space-sm)) 0 var(--space-xl);}
.about-hero-grid {display: grid;gap: var(--space-2xl);align-items: center;}
@media (min-width: 768px){
    .about-hero{padding: calc(var(--space-2xl) + 80px) 0 var(--space-xl);}
    .about-hero-grid{grid-template-columns: 1fr 1.5fr;}
}

/* .about-story-section{padding: var(--space-3xl) 0;} */
/* .about-approach-section {padding: var(--space-3xl) 0;background: var(--cream-warm);} */

.rz_card_grid{display:flex;justify-content:space-between;gap: var(--space-lg);flex-direction: column;}
.rz_card_grid.x2 .about-journey-media{width:100%;flex-basis:100%;}

.about-approach-section .life-challenges-grid{grid-template-columns: repeat(1, 1fr);}

@media(min-width:1200px){
    .about-approach-section .life-challenges-grid{grid-template-columns: repeat(3, 1fr);}
    .rz_card_grid{flex-direction:row;}
    .rz_card_grid.x2 .about-journey-media{width:50%;flex-basis:50%;}
}
/* .rz_card_grid .approach-card{width:100%;} */
.approach-card,.rz_card{
    position: relative;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    /* background: linear-gradient(145deg, #FFFEF9 0%, #FAF7F2 100%); */
    /* background: linear-gradient(168.96deg, #FBE1B9 0%, #FAF6EF 100%); */
    background: linear-gradient(168.96deg, #DFA563 0%, #FFF7EB 100%);
    border-radius: 16px;
    text-align: center;
    z-index: 1;
    /* min-height: 260px; */
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    /* Double-line border effect */
    border: 1.5px solid rgba(196, 163, 90, 0.35);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.9),
        inset 0 0 0 5px rgba(196, 163, 90, 0.15),
        0 2px 8px rgba(44, 36, 24, 0.04),
        0 8px 24px rgba(44, 36, 24, 0.06),
        0 16px 48px rgba(44, 36, 24, 0.04);

    /* Smooth hover transition */
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle zodiac watermark */
.approach-card::before,.rz_card::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    border-radius: 10px;
}

/* Hover effect */
.approach-card:hover,.rz_card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.95),
        inset 0 0 0 5px rgba(196, 163, 90, 0.2),
        0 4px 12px rgba(44, 36, 24, 0.06),
        0 12px 32px rgba(44, 36, 24, 0.08),
        0 24px 56px rgba(44, 36, 24, 0.06),
        0 0 0 1px rgba(74, 43, 10, 0.08);
}


/* -------------------------------------------------------------------------
   ORNAMENTS & DECORATIVE
   ------------------------------------------------------------------------- */
.ornament-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    margin: var(--space-lg) auto;
}

.ornament-star {
    display: inline-block;
    color: var(--gold-muted);
    font-size: 1.25rem;
    margin: 0 var(--space-xs);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold-muted);
}

/* -------------------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------------------- */
.pe-none{pointer-events:none !important;}
/* Dark Button Variant */
.btn-primary-dark {
    background: var(--ink);
    color: #fffaf0; /* Soft warm white */
    box-shadow: 0 4px 12px rgba(44, 36, 24, 0.15);
    padding: 1rem 2.25rem;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}
.btn-primary-dark:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 43, 10, 0.3);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}
.m-xs{margin:var(--space-xs)!important}.m-sm{margin:var(--space-sm)!important}.m-md{margin:var(--space-md)!important}.m-lg{margin:var(--space-lg)!important}.m-xl{margin:var(--space-xl)!important}.m-2xl{margin:var(--space-2xl)!important}.m-3xl{margin:var(--space-3xl)!important}.m-4xl{margin:var(--space-4xl)!important}
.mx-xs{margin-inline:var(--space-xs)!important}.mx-sm{margin-inline:var(--space-sm)!important}.mx-md{margin-inline:var(--space-md)!important}.mx-lg{margin-inline:var(--space-lg)!important}.mx-xl{margin-inline:var(--space-xl)!important}.mx-2xl{margin-inline:var(--space-2xl)!important}.mx-3xl{margin-inline:var(--space-3xl)!important}.mx-4xl{margin-inline:var(--space-4xl)!important}
.my-xs{margin-block:var(--space-xs)!important}.my-sm{margin-block:var(--space-sm)!important}.my-md{margin-block:var(--space-md)!important}.my-lg{margin-block:var(--space-lg)!important}.my-xl{margin-block:var(--space-xl)!important}.my-2xl{margin-block:var(--space-2xl)!important}.my-3xl{margin-block:var(--space-3xl)!important}.my-4xl{margin-block:var(--space-4xl)!important}
.mt-xs{margin-top:var(--space-xs)!important}.mt-sm{margin-top:var(--space-sm)!important}.mt-md{margin-top:var(--space-md)!important}.mt-lg{margin-top:var(--space-lg)!important}.mt-xl{margin-top:var(--space-xl)!important}.mt-2xl{margin-top:var(--space-2xl)!important}.mt-3xl{margin-top:var(--space-3xl)!important}.mt-4xl{margin-top:var(--space-4xl)!important}
.mb-xs{margin-bottom:var(--space-xs)!important}.mb-sm{margin-bottom:var(--space-sm)!important}.mb-md{margin-bottom:var(--space-md)!important}.mb-lg{margin-bottom:var(--space-lg)!important}.mb-xl{margin-bottom:var(--space-xl)!important}.mb-2xl{margin-bottom:var(--space-2xl)!important}.mb-3xl{margin-bottom:var(--space-3xl)!important}.mb-4xl{margin-bottom:var(--space-4xl)!important}
.ml-xs{margin-left:var(--space-xs)!important}.ml-sm{margin-left:var(--space-sm)!important}.ml-md{margin-left:var(--space-md)!important}.ml-lg{margin-left:var(--space-lg)!important}.ml-xl{margin-left:var(--space-xl)!important}.ml-2xl{margin-left:var(--space-2xl)!important}.ml-3xl{margin-left:var(--space-3xl)!important}.ml-4xl{margin-left:var(--space-4xl)!important}
.mr-xs{margin-right:var(--space-xs)!important}.mr-sm{margin-right:var(--space-sm)!important}.mr-md{margin-right:var(--space-md)!important}.mr-lg{margin-right:var(--space-lg)!important}.mr-xl{margin-right:var(--space-xl)!important}.mr-2xl{margin-right:var(--space-2xl)!important}.mr-3xl{margin-right:var(--space-3xl)!important}.mr-4xl{margin-right:var(--space-4xl)!important}
.p-xs{padding:var(--space-xs)!important}.p-sm{padding:var(--space-sm)!important}.p-md{padding:var(--space-md)!important}.p-lg{padding:var(--space-lg)!important}.p-xl{padding:var(--space-xl)!important}.p-2xl{padding:var(--space-2xl)!important}.p-3xl{padding:var(--space-3xl)!important}.p-4xl{padding:var(--space-4xl)!important}
.px-xs{padding-inline:var(--space-xs)!important}.px-sm{padding-inline:var(--space-sm)!important}.px-md{padding-inline:var(--space-md)!important}.px-lg{padding-inline:var(--space-lg)!important}.px-xl{padding-inline:var(--space-xl)!important}.px-2xl{padding-inline:var(--space-2xl)!important}.px-3xl{padding-inline:var(--space-3xl)!important}.px-4xl{padding-inline:var(--space-4xl)!important}
.py-xs{padding-block:var(--space-xs)!important}.py-sm{padding-block:var(--space-sm)!important}.py-md{padding-block:var(--space-md)!important}.py-lg{padding-block:var(--space-lg)!important}.py-xl{padding-block:var(--space-xl)!important}.py-2xl{padding-block:var(--space-2xl)!important}.py-3xl{padding-block:var(--space-3xl)!important}.py-4xl{padding-block:var(--space-4xl)!important}
.pt-xs{padding-top:var(--space-xs)!important}.pt-sm{padding-top:var(--space-sm)!important}.pt-md{padding-top:var(--space-md)!important}.pt-lg{padding-top:var(--space-lg)!important}.pt-xl{padding-top:var(--space-xl)!important}.pt-2xl{padding-top:var(--space-2xl)!important}.pt-3xl{padding-top:var(--space-3xl)!important}.pt-4xl{padding-top:var(--space-4xl)!important}
.pb-xs{padding-bottom:var(--space-xs)!important}.pb-sm{padding-bottom:var(--space-sm)!important}.pb-md{padding-bottom:var(--space-md)!important}.pb-lg{padding-bottom:var(--space-lg)!important}.pb-xl{padding-bottom:var(--space-xl)!important}.pb-2xl{padding-bottom:var(--space-2xl)!important}.pb-3xl{padding-bottom:var(--space-3xl)!important}.pb-4xl{padding-bottom:var(--space-4xl)!important}
.pl-xs{padding-left:var(--space-xs)!important}.pl-sm{padding-left:var(--space-sm)!important}.pl-md{padding-left:var(--space-md)!important}.pl-lg{padding-left:var(--space-lg)!important}.pl-xl{padding-left:var(--space-xl)!important}.pl-2xl{padding-left:var(--space-2xl)!important}.pl-3xl{padding-left:var(--space-3xl)!important}.pl-4xl{padding-left:var(--space-4xl)!important}
.pr-xs{padding-right:var(--space-xs)!important}.pr-sm{padding-right:var(--space-sm)!important}.pr-md{padding-right:var(--space-md)!important}.pr-lg{padding-right:var(--space-lg)!important}.pr-xl{padding-right:var(--space-xl)!important}.pr-2xl{padding-right:var(--space-2xl)!important}.pr-3xl{padding-right:var(--space-3xl)!important}.pr-4xl{padding-right:var(--space-4xl)!important}

.mx-auto{margin-inline: auto !important}
.my-auto{margin-block: auto !important}
.mt-auto{margin-top: auto !important}
.px-0{padding-inline:0 !important;}
.py-0{padding-block:0 !important;}
.pt-0{padding-top:0 !important;}
.pb-0{padding-bottom:0 !important;}
.pl-0{padding-left:0 !important;}
.pr-0{padding-right:0 !important;}

.text-center{text-align: center !important}
.text-left{text-align: left !important}
.text-right{text-align: right !important}

.justify-center{justify-content: center !important;}
.justify-end{justify-content:flex-end !important;}
.justify-start{justify-content:flex-start !important;}
.justify-between{justify-content: space-between !important;}
.justify-around{justify-content: space-around !important;}
.align-center{align-items: center !important;}
.align-end{align-items: flex-end !important;}
.align-start{align-items: flex-start !important;}
.align-between{align-items: space-between !important;}
.align-around{align-items: space-around !important;}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

/* Focus states */
:focus-visible {
    outline: 2px solid var(--plum);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--plum-soft);
    color: var(--ink);
}

/* -------------------------------------------------------------------------
   SWIPER OVERRIDES
   ------------------------------------------------------------------------- */
.swiper {
    overflow: visible !important;
}

.swiper-slide {
    transition: filter var(--duration-med) var(--ease-out);
}

.swiper-slide:not(.swiper-slide-active) {
    filter: blur(1px);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--cream-deep);
    opacity: 1;
    transition: all var(--duration-fast) var(--ease-out);
}

.swiper-pagination-bullet-active {
    background: var(--cream-base);
    transform: scale(1.5);
}

/* -------------------------------------------------------------------------
   ANIMATIONS (for GSAP enhancement)
   ------------------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-fade {
    opacity: 0;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-fade,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}
/* =========================================================================
   LIFE CHALLENGES GRID - HOMEPAGE CARD STYLE (STRICT COMPLIANCE)
   ========================================================================= */

/* Grid Container */
.astrology-challenges-grid {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr); */
    display:flex;
    justify-content:space-between;
    gap: 32px;
    max-width: var(--container-full);
    margin-inline: auto;
}
.astrology-challenges-grid.grid-2 {
    margin-top: -1rem;
    position: relative;
    z-index: 0;
    gap:10rem;
    justify-content:center;
}

/* Card Base - Exact match to .how-step from homepage */
.astrology-challenge-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    background: linear-gradient(168.96deg, #DFA563 0%, #FFF7EB 100%);
    border-radius: 16px;
    text-align: center;
    z-index: 1;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    /* Double-line border effect - EXACT MATCH */
    border: 1.5px solid rgba(196, 163, 90, 0.35);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.9),
        inset 0 0 0 5px rgba(196, 163, 90, 0.15),
        0 2px 8px rgba(44, 36, 24, 0.04),
        0 8px 24px rgba(44, 36, 24, 0.06),
        0 16px 48px rgba(44, 36, 24, 0.04);

    /* Smooth hover transition - EXACT MATCH */
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media(min-width:1200px){
    .astrology-challenge-card {min-width:332px;}
}

/* Subtle zodiac watermark - EXACT MATCH */
.astrology-challenge-card::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    border-radius: 10px;
}

/* Hover effect - EXACT MATCH */
.astrology-challenge-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.95),
        inset 0 0 0 5px rgba(196, 163, 90, 0.2),
        0 4px 12px rgba(44, 36, 24, 0.06),
        0 12px 32px rgba(44, 36, 24, 0.08),
        0 24px 56px rgba(44, 36, 24, 0.06),
        0 0 0 1px rgba(74, 43, 10, 0.08);
}

/* Card Icon */
.astrology-challenge-icon {
    width: 120px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 2rem; */
    color: var(--heading-color);
    /* opacity: 0.85; */
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.astrology-challenge-card:hover .astrology-challenge-icon {
    transform: scale(1.05);
    opacity: 1;
}

.astrology-challenge-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.2px;
    filter: drop-shadow(0 2px 4px rgba(163, 106, 38, 0.1));
}

/* Card Title - Match homepage style */
.astrology-challenge-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-md);
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

/* Decorative divider after title - Match homepage */
/* .astrology-challenge-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.5), transparent);
    margin: var(--space-sm) auto var(--space-md);
} */

/* Card Description - Match homepage style */
.astrology-challenge-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 230px;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.astrology-challenge-desc.numero{
    max-width: 100%;
    font-family: var(--font-serif);
    text-align: start;
    font-size: 18px;
    font-weight: 500;
}

@media(max-width:768px){
    .astrology-challenges-grid{flex-direction:column;}
    .astrology-challenges-grid.grid-2{gap:var(--space-md);margin-top:var(--space-md);}
}

/* =========================================================================
   PRICING PLANS GRID - HOMEPAGE CARD STYLE (STRICT COMPLIANCE)
   ========================================================================= */

/* Section Layout */
.pricing-section .pricing-header{margin-bottom:var(--space-2xl);}
.astrology-pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin-inline: auto;
}
.astrology-pricing-grid.x2{grid-template-columns: repeat(2, 1fr);}
.astrology-pricing-grid.x3{grid-template-columns: repeat(3, 1fr);}
.numerology-price .astrology-pricing-grid.x3{max-width: 1400px;}

/* Pricing Card Base - Exact match to .how-step from homepage */
.astrology-pricing-card {
    position: relative;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    background: linear-gradient(168.96deg, #DFA563 0%, #FFF7EB 100%);
    border-radius: 16px;
    text-align: center;
    z-index: 1;
    min-height: 520px; /* Taller for pricing content */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    /* Double-line border effect - EXACT MATCH */
    border: 1.5px solid rgba(196, 163, 90, 0.35);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.9),
        inset 0 0 0 5px rgba(196, 163, 90, 0.15),
        0 2px 8px rgba(44, 36, 24, 0.04),
        0 8px 24px rgba(44, 36, 24, 0.06),
        0 16px 48px rgba(44, 36, 24, 0.04);

    /* Smooth hover transition - EXACT MATCH */
    transition:
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle zodiac watermark - EXACT MATCH */
.astrology-pricing-card::before {
    content: '';
    position: absolute;
    inset: 20px;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 140%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    border-radius: 10px;
}

/* Hover effect - EXACT MATCH */
.astrology-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.95),
        inset 0 0 0 5px rgba(196, 163, 90, 0.2),
        0 4px 12px rgba(44, 36, 24, 0.06),
        0 12px 32px rgba(44, 36, 24, 0.08),
        0 24px 56px rgba(44, 36, 24, 0.06),
        0 0 0 1px rgba(74, 43, 10, 0.08);
}

/* Featured Variant - Keep overall style but slightly emphasize if needed, 
   following "no new variants" we just use the same base style but with badge */
.astrology-pricing-card.featured {
    /* Maintain strict compliance with homepage style */
    border-color: rgba(163, 106, 38, 0.45);
}
.astrology-pricing-card.wrapperCard{
    background: none;
    border: 0;
    box-shadow: none;
    padding: var(--space-2xl) 50px var(--space-xl);
    
    background: url('./assets/img/pricingBg.webp');
    background-size: cover;
}
.astrology-pricing-card.wrapperCard:before{
    background: none;
    opacity: 1;
}
.astrology-pricing-card.wrapperCard .astrology-pricing-feature svg{
        color: var(--ink);
}

/* Pricing Content Styles */
.astrology-pricing-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-lg);
    color: var(--heading-color);
    opacity: 0.8;
}

.astrology-pricing-plan-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-sm);
}

.astrology-pricing-plan-name.numero {
 font-weight: 400;
 margin-bottom: 0;
}
.numero-detail-desc{margin-bottom: 40px;color: #614120;padding-left: 20px;text-align: left;}

.astrology-pricing-price {
    margin: var(--space-md) 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.astrology-pricing-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--plum);
}

.astrology-pricing-currency {
    font-size: 1.25rem;
    font-weight: 500;
    margin-right: 2px;
}

.astrology-pricing-period {
    font-size: 0.875rem;
    color: var(--ink-muted);
    margin-left: 4px;
}

.astrology-pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0 var(--space-xl);
    text-align: left;
    width: 100%;
}

.astrology-pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: var(--ink-muted);
}

.astrology-pricing-feature svg {
    flex-shrink: 0;
    color: var(--gold-warm);
    margin-top: 3px;
}

.astrology-pricing-card .btn-secondary-book {
    width: 100%;
    margin-top: auto;
}
.VedicCard .astrology-challenge-desc{max-width:100%;}

/* Most Popular Badge */
.astrology-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--plum);
    color: #fff;
    padding: 4px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(74, 43, 10, 0.2);
    z-index: 10;
}

/* Responsive */
@media (max-width: 991px) {
    .astrology-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .astrology-pricing-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
    }
    .astrology-pricing-card{padding:var(--space-xl) var(--space-lg) var(--space-lg)}
    .numerology-page-lux .astrology-pricing-card{padding-bottom:0;}
}


/* =========================================================================
   FINAL CTA SECTION
   ========================================================================= */
.final-cta-section {
    position: relative;
    /* padding: var(--space-4xl) 0; */
    background: transparent;
    overflow: hidden;
}

.final-cta-container {
    background: linear-gradient(168.96deg, rgba(223, 165, 99, 0.1) 0%, rgba(255, 247, 235, 0.7) 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(196, 163, 90, 0.2);
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.6),
        0 4px 16px rgba(44, 36, 24, 0.06),
        0 16px 48px rgba(44, 36, 24, 0.08);
    overflow: hidden;
    display: grid;
    align-items: center;
    min-height: 500px;
}

@media (min-width: 992px) {
    .final-cta-container {
        grid-template-columns: 50% 50%;
        max-width:94%;
        margin:0 auto;
    }
}

@media (max-width: 991px) {
    .final-cta-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/* Left: Visual */
.final-cta-visual {
    position: relative;
    height: 100%;
    /* min-height: 500px; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: linear-gradient(135deg, rgba(163, 106, 38, 0.08) 0%, rgba(227, 168, 103, 0.05) 100%);
}

@media (max-width: 991px) {
    .final-cta-visual {
        min-height: 400px;
        order: 2;
    }
}

.final-cta-image-wrap {
    position: relative;
    /* width: 100%;
    max-width: 100%;
    aspect-ratio: 1/1; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-image-wrap img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(44, 36, 24, 0.15));
    max-width: 86%;
}
/* Right: Content */
.final-cta-content {
    padding: var(--space-2xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .final-cta-content {
        order: 1;
        padding: var(--space-2xl) var(--space-xl);
        text-align: center;
    }
}

.final-cta-heading {
    margin-bottom: var(--space-lg);
}

.final-cta-description {
    margin-bottom: var(--space-xl);
    color: var(--ink-muted);
    line-height: 1.7;
    max-width: 500px;
}

@media (max-width: 991px) {
    .final-cta-description {
        margin-inline: auto;
    }
}

/* CTA Actions */
.final-cta-actions {
    display: flex;
    gap: var(--space-md);
}

@media (max-width: 991px) {
    .final-cta-actions {
        justify-content: center;
    }
}

/* CTA Button with Subtle Pulse Glow */
.final-cta-btn {
    background: linear-gradient(135deg, var(--gold-muted) 0%, var(--gold-warm) 100%);
    color: var(--paper);
    border: 1.5px solid transparent;
    box-shadow: 0 4px 12px rgba(163, 106, 38, 0.2);
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold-warm), var(--gold-muted));
    opacity: 0;
    z-index: -1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.05);
    }
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, var(--plum) 0%, var(--gold-muted) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(163, 106, 38, 0.3);
}

.final-cta-btn:hover::before {
    animation: none;
    opacity: 0;
}

/*  */
.numerology-page-lux .final-cta-visual{align-items:center;}
.numerology-page-lux .final-cta-visual img{animation: rotateZodiac 120s linear infinite;}

.vedic-page .final-cta-image-wrap{width:100%;}
.vedic-page .final-cta-image-wrap img{max-width:100%;}
@media(min-width:992px){
    .vedic-page .final-cta-container{grid-template-columns: 45% 55%;}
    .vedic-page .final-cta-container .final-cta-content{padding:var(--space-xl) var(--space-xl);}
}
/*  */

/* Responsive Final CTA */
@media (max-width: 600px) {
    .final-cta-section {
        padding: var(--space-2xl) 0;
    }
    .final-cta-visual { min-height: 350px; }
    /* .final-cta-image-wrap { max-width: 300px; } */
    .final-cta-content { padding: var(--space-xl) var(--space-lg); }
    .final-cta-btn { width: 100%; }
}
/* -------------------------------------------------------------------------
   AREAS OF GUIDANCE — 3D COVERFLOW (v3, inura-style)
   ------------------------------------------------------------------------- */
.areas-guidance {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.areas-guidance-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(74, 43, 10, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Tab Navigation */
.guidance-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.guidance-tab {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: transparent;
    border: none;
    padding: var(--space-sm) var(--space-lg);
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.guidance-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--plum), transparent);
    transition: transform 0.4s var(--ease-out);
}

.guidance-tab:hover {
    color: var(--ink);
}

.guidance-tab.active {
    color: var(--plum);
}

.guidance-tab.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* 3D Coverflow Stage */
.coverflow-stage-3d {
    position: relative;
    perspective: 1200px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74, 43, 10, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.coverflow-shadow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(44, 36, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Swiper Container */
.coverflow-swiper-3d {
    width: 100%;
    max-width: 900px;
    overflow: visible !important;
}

.coverflow-swiper-3d .swiper-wrapper {
    align-items: center;
}

.coverflow-swiper-3d .swiper-slide {
    width: clamp(220px, 18vw, 260px);
    opacity: 1;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease,
        filter 0.6s ease;
}

/* Side cards: pushed back, rotated, smaller */
.coverflow-swiper-3d .swiper-slide-prev {
    transform: translateX(30px) translateZ(-60px) rotateY(32deg) scale(0.88);
    opacity: 0.75;
}

.coverflow-swiper-3d .swiper-slide-next {
    transform: translateX(-30px) translateZ(-60px) rotateY(-32deg) scale(0.88);
    opacity: 0.75;
}

/* Active card: front and center */
.coverflow-swiper-3d .swiper-slide-active {
    transform: translateZ(140px) scale(1.04);
    z-index: 10;
}

/* Far cards */
.coverflow-swiper-3d .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
    opacity: 0.5;
    filter: blur(1px);
}

/* Guidance Card */
.guidance-card {
    background: linear-gradient(160deg, #FFFEF9 0%, #FAF6F0 100%);
    border: 1.5px solid rgba(196, 163, 90, 0.3);
    border-radius: 16px;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    aspect-ratio: 0.62;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow:
        inset 0 0 0 3px rgba(255, 254, 249, 0.8),
        inset 0 0 0 4px rgba(196, 163, 90, 0.12),
        0 4px 12px rgba(44, 36, 24, 0.04),
        0 12px 32px rgba(44, 36, 24, 0.06),
        0 24px 48px rgba(44, 36, 24, 0.04);
    transition: box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Zodiac watermark inside card */
.guidance-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 180%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.025;
    pointer-events: none;
}

/* Active card glow */
.swiper-slide-active .guidance-card {
    box-shadow:
        inset 0 0 0 3px rgba(255, 254, 249, 0.9),
        inset 0 0 0 4px rgba(196, 163, 90, 0.18),
        0 6px 16px rgba(44, 36, 24, 0.05),
        0 16px 40px rgba(44, 36, 24, 0.08),
        0 32px 64px rgba(44, 36, 24, 0.06),
        0 0 60px rgba(74, 43, 10, 0.1);
}

.guidance-card-icon {
    width: 48px;
    height: 48px;
    color: var(--plum);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.guidance-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: var(--space-xs);
}

.guidance-card-subtitle {
    font-size: 0.75rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
}

.guidance-card-desc {
    font-size: 0.8125rem;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.guidance-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md);
    text-align: left;
    width: 100%;
}

.guidance-card-bullets li {
    font-size: 0.75rem;
    color: var(--ink-muted);
    padding-left: var(--space-md);
    position: relative;
    margin-bottom: var(--space-xs);
}

.guidance-card-bullets li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-muted);
    font-size: 0.625rem;
}

.guidance-card-cta {
    font-size: 0.8125rem;
    color: var(--plum);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
}

.guidance-card-cta:hover {
    color: var(--plum-deep);
}

/* Floating animation for cards */
.guidance-card.floating {
    animation: guidanceFloat 5s ease-in-out infinite;
}

@keyframes guidanceFloat {

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

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

/* Responsive */
@media (max-width: 991px) {
    .coverflow-stage-3d {
        height: 450px;
    }

    .coverflow-swiper-3d .swiper-slide {
        width: 200px;
    }

    .coverflow-swiper-3d .swiper-slide-prev,
    .coverflow-swiper-3d .swiper-slide-next {
        transform: translateZ(-40px) rotateY(25deg) scale(0.9);
    }

    .coverflow-swiper-3d .swiper-slide-active {
        transform: translateZ(100px) scale(1.02);
    }
}

@media (max-width: 767px) {
    .guidance-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

    .guidance-tab {
        flex-shrink: 0;
    }

    .coverflow-stage-3d {
        height: 400px;
    }

    .coverflow-swiper-3d .swiper-slide {
        width: 180px;
    }

    .coverflow-swiper-3d .swiper-slide-prev,
    .coverflow-swiper-3d .swiper-slide-next {
        transform: translateZ(-30px) rotateY(18deg) scale(0.92);
    }

    .coverflow-swiper-3d .swiper-slide-active {
        transform: translateZ(60px) scale(1);
    }

    .coverflow-halo,
    .coverflow-shadow {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .guidance-card.floating {
        animation: none;
    }

    .coverflow-swiper-3d .swiper-slide {
        transition: none;
    }
}

/* -------------------------------------------------------------------------
   AREAS OF GUIDANCE — INURA-STYLE 3D (v4)
   ------------------------------------------------------------------------- */
.ag-section {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.ag-watermark {
    position: absolute;
    inset: 0;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 600px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.025;
    pointer-events: none;
}

/* Tab Navigation */
.ag-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.ag-tab {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink-muted);
    background: transparent;
    border: none;
    padding: var(--space-sm) var(--space-xl);
    cursor: pointer;
    position: relative;
    transition: all 0.4s var(--ease-out);
    border-radius: 24px;
}

.ag-tab::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(74, 43, 10, 0);
    transition: all 0.4s var(--ease-out);
}

.ag-tab:hover {
    color: var(--ink);
}

.ag-tab.active {
    color: var(--plum);
    /* background: rgba(74, 43, 10, 0.08); */
    /* background: rgb(254 253 247); */
    /* background: rgb(250 239 220); */
    background-color: var(--paper);
    
}

.ag-tab.active::after {
    box-shadow: 0 0 16px rgba(74, 43, 10, 0.25);
}

/* 3D Deck Stage */
.ag-deck-stage {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.ag-deck-spotlight {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(44, 36, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Deck Container */
.ag-deck {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    cursor: grab;
    user-select: none;
}

.ag-deck:active {
    cursor: grabbing;
}

/* Swiper Container */
.ag-swiper {
    width: 100%;
    max-width: 800px;
    padding: 40px 0;
    overflow: visible !important;
}

.ag-swiper .swiper-wrapper {
    align-items: center;
}

/* Individual Cards */
.ag-swiper .swiper-slide {
    width: clamp(200px, 20vw, 260px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

.ag-card {
    position: absolute;
    /* width: 280px; */
    /* height: 400px; */
    width: 350px;
    height: 480px;
    /* background: linear-gradient(165deg, #FFFEF9 0%, #FAF6EF 100%); */
    /* background: linear-gradient(168.96deg, #FBE1B9 0%, #FAF6EF 100%); */
    background: linear-gradient(168.96deg, #DFA563 0%, #FFF7EB 100%);
    border: 1.5px solid rgba(196, 163, 90, 0.35);
    border-radius: 16px;
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transform-style: preserve-3d;
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.85),
        inset 0 0 0 5px rgba(196, 163, 90, 0.15),
        0 8px 24px rgba(44, 36, 24, 0.06),
        0 24px 48px rgba(44, 36, 24, 0.08);
    transition: box-shadow 0.4s ease;
}

/* Zodiac watermark in card */
.ag-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('./assets/img/body-bg-zodiac.png');
    background-size: 160%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    border-radius: 18px;
}

/* Active card plum rim glow */
.ag-card.active {
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.9),
        inset 0 0 0 5.5px rgba(196, 163, 90, 0.2),
        0 12px 32px rgba(44, 36, 24, 0.08),
        0 32px 64px rgba(44, 36, 24, 0.1),
        0 0 40px rgba(74, 43, 10, 0.12),
        0 0 80px rgba(74, 43, 10, 0.06);
}

.ag-card-icon {
    /* --size:36px; */
    --size:132px;
    width:var(--size);
    height:var(--size);
    color: var(--plum);
    margin-bottom: var(--space-sm);
    opacity: 0.75;
    flex-shrink: 0;
}

.ag-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.ag-card-subtitle {
    font-size: .875rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.ag-card-desc {
    font-size: 1rem;
    color: var(--ink-muted);
    line-height: 1.3;
    margin-bottom: var(--space-xl);
    max-width: 95%;
}
.ag-card-bullets-head{
    font-size: .75rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xs);
    /* margin-top: var(--space-sm); */
    text-transform: uppercase;
}
.ag-card-bullets {
    list-style: none;
    padding: 0 8px;
    margin: 0 0 var(--space-sm);
    text-align: left;
    width: 100%;
}

.ag-card-bullets li {
    font-size: clamp(.875rem, 2vw, 1rem);
    color: var(--ink-muted);
    padding-left: var(--space-md);
    position: relative;
    margin-bottom: 4px;
    text-align: center;
}

.ag-card-bullets li::before {
    content: '✦';
    position: absolute;
    /* left: 0; */
    transform: translate(-16px,4px);
    color: rgba(196, 163, 90, 0.7);
    font-size: 0.625rem;
}

.ag-card-cta {
    font-size: 0.875rem;
    color: var(--plum);
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
}

.ag-card-cta:hover {
    color: var(--plum-deep);
}

/* ===== AG-CARD FLOATING MICRO-INTERACTIONS ===== */
/* Floating animation for active ag-card */
@keyframes agCardFloat {

    0%,
    100% {
        transform: translate3d(0px, 0px, 180px) rotate(0deg) scale(1.08, 1.08);
    }

    50% {
        transform: translate3d(0px, -12px, 180px) rotate(0.5deg) scale(1.08, 1.08);
    }
}

/* Apply floating animation to active card */
.ag-card.active.floating {
    animation: agCardFloat 4s ease-in-out infinite;
}

/* Subtle float for side cards */
@keyframes agCardFloatSide {

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

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

.ag-card.floating:not(.active) {
    animation: agCardFloatSide 5s ease-in-out infinite;
}

/* Different animation delays for natural breathing effect */
.ag-card[data-index="0"].floating {
    animation-delay: 0s;
}

.ag-card[data-index="1"].floating {
    animation-delay: -1.2s;
}

.ag-card[data-index="2"].floating {
    animation-delay: -2.4s;
}

/* Hover micro-interaction */
.ag-card:hover {
    cursor: pointer;
}

.ag-card.active:hover {
    box-shadow:
        inset 0 0 0 4px rgba(255, 254, 249, 0.95),
        inset 0 0 0 6px rgba(196, 163, 90, 0.25),
        0 16px 40px rgba(44, 36, 24, 0.12),
        0 40px 80px rgba(44, 36, 24, 0.12),
        0 0 50px rgba(74, 43, 10, 0.15),
        0 0 100px rgba(74, 43, 10, 0.08);
}

/* Responsive: Tablet */
@media (max-width: 1199px) {
    .ag-deck-stage {
        height: 480px;
    }

    .ag-card {
        width: clamp(200px, 28vw, 260px);
        margin-left: calc(clamp(200px, 28vw, 260px) / -2);
        margin-top: calc(clamp(200px, 28vw, 260px) * -0.82);
    }
    
}

/* Responsive: Mobile */
@media (max-width: 767px) {
    .about-hero-grid .content{order:-1;}
    .about-hero-grid{gap: var(--space-lg);}
    .ag-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        justify-content: space-between;
        /* padding: 0 var(--space-md) var(--space-sm); */
        padding: 0 0 var(--space-md);
        -webkit-overflow-scrolling: touch;
        gap: calc(var(--space-sm) - .25rem);
    }

    .ag-tab {
        flex-shrink: 0;
        padding: var(--space-xs) var(--space-sm);
        font-size: 0.875rem;
    }
    .ag-tab.active::after{box-shadow:none;}

    .ag-deck-stage {
        height: 400px;
    }

    .ag-card {
        width: clamp(170px, 48vw, 220px);
        /* margin-left: calc(clamp(170px, 48vw, 220px) / -2); */
        /* margin-left: calc(clamp(170px, 48vw, 220px) / -10); */
        margin-left: calc(clamp(170px, 48vw, 220px) / -200);
        margin-top: calc(clamp(170px, 48vw, 220px) * -0.82);
        padding: var(--space-md) var(--space-sm);
    }

    .ag-card-title {
        font-size: 1.125rem;
    }

    .ag-card-desc {
        font-size: 0.75rem;
    }

    .ag-deck-spotlight {
        width: 250px;
        height: 50px;
    }
}

/* Reduced motion for 3D deck */
@media (prefers-reduced-motion: reduce) {
    .ag-card {
        transition: none !important;
    }
}

/* ========================================================================
   RESPONSIVE OVERRIDES (MOBILE & TABLET)
   ======================================================================== */

/* -------------------------------------------------------------------------
   GLOBAL 
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    :root {
        --container-pad: 1.25rem;
        --space-3xl: 4rem;
        --space-4xl: 6rem;
    }

    .heading-xl {
        font-size: 3rem;
    }

    .heading-lg {
        font-size: 2.25rem;
    }

    .section-lg {
        padding-block: var(--space-3xl);
    }
}

@media (max-width: 767px) {
    .heading-xl {
        font-size: 2.5rem;
    }
}

/* -------------------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .hero {
        min-height: auto;
        padding-top: 68px;
        /* padding-bottom: var(--space-3xl); */
        padding-bottom:0px;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: var(--space-2xl);
        /* padding-top:var(--space-2xl); */
        padding-top:var(--space-lg);
    }

    .hero-content-left {
        order: 1;
        /* Text first */
        text-align: center;
        max-width: 100%;
        margin-inline: auto;
        padding-top: 0;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

    .hero-bullets {
        align-items: center;
        /* Center bullets */
    }

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

    .hero-ctas {
        justify-content: center;
    }
    .heading-display br{display:none;}

    /* Slider / Right Side */
    .hero-slider-wrap {
        order: 2;
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin-inline: auto;
        position: relative;
    }

    .hero-zodiac-wheel {
        /* width: 300px;
        height: 300px;
        top: -50px;
        right: -50px; */
        width: 600px;
        height: 600px;
        top: -300px;
        right: -300px;
        /* opacity: 0.5; */
    }

    .hero-destiny-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-slider-wrap {height: 350px;max-width: 300px;}
    .text-body-lg{font-size:1rem;}
    .hero-trust-item{font-size:.75rem;}
    .hero-bullet{font-size:.9375rem;}
    .heading-xl{font-size:2.25rem;}
    .heading-xl .text-serif{font-size:1.875rem;}
}

/* -------------------------------------------------------------------------
   AREAS OF GUIDANCE (3D DECK)
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .ag-deck-stage {
        perspective: 1000px;
        min-height: 450px;
    }

    /* Fixed dimensions override for responsive JS layout */
    .ag-card {
        width: 80%;
        height: 440px;
    }
}

@media (max-width: 767px) {
    .ag-section {
        padding: var(--space-2xl) 0;
    }

    .ag-deck-stage {
        min-height: 400px;
        perspective: 800px;
    }

    /* .ag-card {
        width: 220px;
        height: 330px;
    } */

    .ag-card-title {
        font-size: 1.25rem;
    }

    .ag-card-subtitle {
        font-size: 0.75rem;
    }
}

/* -------------------------------------------------------------------------
   LIFE CHALLENGES
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .life-challenges-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 767px) {
    .life-challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------
   HOW IT WORKS
   ------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .how-steps {
        scale: 1 !important;
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
        padding-top: var(--space-lg);
    }

    .how-step {
        transform: none !important;
        margin: 0 !important;
        max-width: 100%;
        text-align: center;
    }

    .how-step-desc {
        margin-inline: auto;
    }
}

/* -------------------------------------------------------------------------
   BENTO TESTIMONIALS 
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .testimonials-bento {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .testimonials-column {
        padding-top: 0 !important;
        gap: var(--space-lg);
    }
}

/* -------------------------------------------------------------------------
   TAROT FAN SECTION
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    /* .fan-wrap {
        height: 380px;
    } */

    .fan-section {
        overflow: hidden;
    }
}

/* -------------------------------------------------------------------------
   FOOTER 
   ------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .footer-video {
        width: 300%;
        left: 50%;
    }
}

/* =========================================================================
   SANSKRIT MANTRA - FIXED BOTTOM ROTATING
   ========================================================================= */
.sanskrit-mantra-fixed {
    position: fixed;
    z-index: 999;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/img/sticky_paper_bg_1.webp');
    background-size: auto;
    background-position: center 40%;
    background-repeat: no-repeat;
    overflow: hidden;
    /* mask: url('../img/sticky_paper_bg.webp'); */
    /* pointer-events: none; */
}
.sanskrit-mantra-fixed .__wrap{
    display: flex;
    white-space: nowrap;
    /* overflow: hidden; */
    /* padding: calc(var(--space-xl) + .875rem) 0 calc(var(--space-lg) - .5rem); */
    padding: calc(var(--space-xl) + .5rem) 0 calc(var(--space-lg) - .5rem);
}

.sanskrit-mantra-text {
    font-family: var(--font-mantra-serif);
    font-size: 1.25rem;
    color: var(--heading-color);
    opacity: 0.8;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
    will-change: transform;
    display: inline-block;
    padding-right: 1rem;
}

@media (max-width: 767px) {
    .logo ,
    .footer-logo img{max-width:160px;}
    .site-header.scrolled{background: linear-gradient(180deg, #f9d4a4 0%, rgba(249,212,164, 0.6) 41.98%, rgba(163, 106, 38, 0) 89.2%);}
    .sanskrit-mantra-fixed{background-size:70rem;background-position:center 100%;pointer-events:none;bottom:-1px;}
    .sanskrit-mantra-fixed .__wrap{padding:calc(var(--space-xl) - 1.125rem) 0 calc(var(--space-lg) - 1rem);}
    .sanskrit-mantra-text {font-size:.9375rem;letter-spacing:1px;padding-right:.5rem;}
    .faq-question{font-size:.9375rem;gap:var(--space-xs);}
    .ag-deck{align-items:flex-end;}
    .hero-subtitle{margin-bottom:var(--space-lg);}
    .hero-content-left .text-body-lg{font-size:.9375rem;}
    .hero-bullets{align-items:flex-start;margin:0 auto var(--space-lg);}
    .hero-trust,.hero-trust-item{gap:.25rem;/*justify-content:space-between;*/}
    .testimonials-section .__header,
    .faq-section .__header,
    .life-challenges-section .__header{margin-bottom:var(--space-lg);}
    .life-challenge-item{padding:0px;}
    .life-challenge-desc{max-width:83%;}
    .about-journey-title{padding-top:0px;}
    .about-journey-content{padding: 0 var(--space-md);}
    .fan-section-header{margin-top: 0;}
    .fan-deck{align-items:center;}
    .fan-section{padding-bottom:0;}
    .testimonials-section .__footer{margin-top:var(--space-xl);}
    .final-cta{padding:0 0 var(--space-2xl);}
    .section-eyebrow::before, .section-eyebrow::after{width:1.875rem;}
    .footer-text,
    .footer-tagline{font-size:.875rem;}
    .how-steps{gap:var(--space-md)}
    .how-step{min-height:260px;padding:var(--space-xl) var(--space-xl) var(--space-xl);}
}

/* -------------------------------------------------------------------------
   TAROT CATEGORIES SECTION
   ------------------------------------------------------------------------- */
.tarot-cats-section {
    /* padding-block: var(--space-3xl); */
    position: relative;
    overflow: hidden;
}

.tarot-cats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.1;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.tarot-cats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

@media (max-width: 1200px) {
    .tarot-cats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

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

.tarot-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    cursor: pointer;
    padding: var(--space-md);
    transition: transform 0.3s ease;
}

.tarot-cat-card:hover{transform: translateY(-5px);}
.tarot-cat-text-wrap {position: relative;width: 100%;height: 1.5rem;perspective: 1000px;transform-style: preserve-3d;}
.tarot-cat-front, .tarot-cat-back {position: absolute;inset: 0;width: 100%;height: 100%;backface-visibility: hidden;display: flex;align-items: center;justify-content: center;font-family: var(--font-sans);font-weight: 700;font-size: 1.125rem;letter-spacing: 0.15em;color: var(--heading-color);text-transform: uppercase;transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;white-space: nowrap;}

.tarot-cat-back {transform: rotateX(-180deg);color: var(--gold-muted);opacity: 0;}
.tarot-cat-card:hover .tarot-cat-front {transform: rotateX(180deg);opacity: 0;}
.tarot-cat-card:hover .tarot-cat-back {transform: rotateX(0deg);opacity: 1;}
.tarot-cat-icon {width: 80px;height: 80px;display: flex;align-items: center;justify-content: center;color: rgba(0, 0, 0, 0.7);transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}

@media (max-width: 480px) {
    .tarot-cats-grid{gap:var(--space-xs)}
    .tarot-cat-icon{width: 42px;height:42px;}
    .tarot-cat-card{gap:var(--space-md);}
}

/* .tarot-cat-card:hover .tarot-cat-icon {color: var(--gold-muted);transform: scale(1.2) rotate(5deg);filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));}*/
.tarot-cat-icon svg {width: 100%;height: 100%;stroke-width: 1.5;filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));}

.numerology-page-lux .about-journey-photo{height:100%;width:100%;}
.numerology-page-lux .about-journey-photo img{max-height:610px;width:100%;object-fit:cover;object-position:center center;}

.vedic-page .about-journey-photo{height:100%;width:100%;}
.vedic-page .about-journey-photo img{max-height:610px;width:100%;object-fit:cover;object-position:center center;}


@media(min-width:1200px){
    .btn-lg{padding:1.125rem 2.25rem;font-size:1.25rem;gap:var(--space-sm)}
    .btn-lg svg{width:28px;height:28px;}
}
/*  */

@media(max-width:991px){
    .vedic-page .fan-section.section{padding-top:var(--space-4xl);}
}/* -------------------------------------------------------------------------
   LEGAL PAGES
   ------------------------------------------------------------------------- */
.legal-zodiac-wheel {
    top: 6rem;
    right: 1rem;
    opacity: 0.28;
    pointer-events: none;
}
.legal-hero {
    padding-top: calc(var(--space-3xl) + 4.5rem);
    padding-bottom: var(--space-xl);
    text-align: center;
    position: relative;
}
.legal-hero::before {
    content: '';
    position: absolute;
    width: min(72vw, 48rem);
    height: min(72vw, 48rem);
    left: 50%;
    top: 0;
    transform: translate(-50%, -40%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(223, 165, 99, 0.3) 0%, rgba(223, 165, 99, 0.08) 44%, rgba(223, 165, 99, 0) 72%);
    z-index: -1;
}
.legal-kicker {
    margin-bottom: var(--space-sm);
}
.legal-updated {
    margin-top: var(--space-md);
    color: var(--ink-soft);
}
.legal-content {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-2xl);
}
/* .legal-surface {
    background: linear-gradient(165deg, rgba(255, 247, 235, 0.96), rgba(250, 247, 242, 0.94));
    border: 1px solid rgba(163, 106, 38, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: clamp(1.25rem, 2.5vw, 2.2rem);
    backdrop-filter: blur(1px);
} */
.legal-card {
    /* background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(163, 106, 38, 0.15);
    border-radius: var(--radius-lg); */
    padding: clamp(1rem, 2vw, 1.5rem);
}
.legal-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}
.legal-card h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.12rem, 2.2vw, 1.35rem);
    margin: var(--space-md) 0 var(--space-sm);
}
.legal-card p,
.legal-card li {
    color: var(--ink-muted);
    line-height: 1.7;
}
.legal-card ul {
    list-style: none;
    padding-left: 1.35rem;
    margin-top: var(--space-sm);
}
.legal-card li + li {
    margin-top: 0.35rem;
}
.legal-card a {
    color: var(--plum);
    text-decoration: underline;
    text-decoration-color: rgba(74, 43, 10, 0.32);
    text-underline-offset: 2px;
}
.legal-cta {
    margin-top: var(--space-2xl);
    display: flex;
    justify-content: center;
}
@media (max-width: 991px) {
    .legal-hero {
        padding-top: calc(var(--space-2xl) + 3.75rem);
    }
    .legal-zodiac-wheel {
        top: 7.5rem;
        right: -2.5rem;
        opacity: 0.2;
        transform: scale(0.82);
    }
}
.wpcf7-form .form-control::placeholder,
.wpcf7-form select:has(option:disabled:checked) {
    color: var(--plum-glow);
}
/*  */
/* -------------------------------------------------------------------------
   PODCAST SECTION
   ------------------------------------------------------------------------- */
.podcast-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: var(--ink);
    margin-top: var(--space-lg);
}

.podcast-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* -------------------------------------------------------------------------
   TESTIMONIALS SLIDER & MODAL
   ------------------------------------------------------------------------- */
/* Testimonials Swiper */
.testimonials-swiper {
    padding-bottom: var(--space-2xl);
    padding-inline: var(--space-xs);
    margin-top: var(--space-xl);
}

.testimonials-swiper .swiper-slide {
    filter: none;
    height: auto;
}

.testimonials-swiper .swiper-wrapper {
    height: auto;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination-bullet {
    background: var(--plum);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--plum);
    transform: scale(1.2);
}

.testimonial-bento-card {
    position: relative;
    background: transparent url('./assets/img/old-paper.webp');
    background-size: cover;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    min-height: 300px;
    display: flex;
    gap: var(--space-xl);
    transition: all var(--duration-med) var(--ease-out);
    overflow: hidden;
}

.testimonial-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-right {
    width: 140px;
    flex-shrink: 0;
}

.testimonial-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--plum-soft);
    display: flex; /* Centering buttons */
    align-items: center;
    justify-content: center;
}

.testimonial-thumbnail img {
    position: absolute; /* Take image out of flex flow for centering button */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-bento-card:hover .testimonial-thumbnail img {
    transform: scale(1.1);
}

/* Media Button - Centered Overlay */
.testimonial-media-btn {
    position: relative; /* Position relative to thumbnail flex container */
    z-index: 2;
    padding: 10px 20px;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: .8125rem;
    line-height: 15px;
    letter-spacing: 0.03em;
    background: rgba(217, 217, 217, 0.3);
    backdrop-filter: blur(1.5px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;


}

/* Video specific - Circular Play Button */
[data-media-type="video"] .testimonial-media-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    border-radius: 50%;
}

[data-media-type="video"] .testimonial-media-btn span {
    display: none; /* Hide "Play Video" text, show only icon in circle */
}

[data-media-type="video"] .testimonial-media-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 3px; /* Optical centering for play triangle */
}

.testimonial-media-btn:hover {
    background: rgba(217, 217, 217, 0.85);
    transform: scale(1.05);
    color:var(--heading-color);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .testimonial-bento-card {
        flex-direction: column;
        min-height: auto;
    }
    .testimonial-card-right {
        width: 100%;
        height: 200px;
    }
}

/* Modal Styles */
.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.testimonial-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 95vh;
    background: var(--plum-soft);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.testimonial-modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-modal-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

.testimonial-modal-body {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

/* Modal Image */
.testimonial-modal-body img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 85vh;
    display: block;
    border-radius: var(--radius-md);
    object-fit: contain;
}

/* Modal Video */
.testimonial-modal-video-wrapper {
    position: relative;
    width: 100%; /* Important for flex container */
    max-width: 100%;
    padding-bottom: 100%; /* 1:1 Aspect Ratio default */
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.testimonial-modal-video-wrapper.landscape {
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.testimonial-modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 767px) {
    .testimonial-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .testimonial-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        top: var(--space-sm);
        right: var(--space-sm);
    }
    .testimonial-bento-card{padding:var(--space-xl) var(--space-sm) var(--space-xl) var(--space-xl);}
}
