
/* ── Page-level overrides (tokens come from astrovachmi_style.css) ── */
body {
        background: var(--deep, #0d0d18);
        color: var(--text, #e8e4d8);
        font-family: 'Lato', sans-serif;
}

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.km-hero {
        position: relative;
        background: var(--deep, #0d0d18);
        padding: 72px 0 48px;
        text-align: center;
        overflow: hidden;
}
.km-hero::before {
        content: '';
        position: absolute;
        top: -20%;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 400px;
        background: radial-gradient(ellipse,
        rgba(123, 94, 167, 0.18) 0%,
        rgba(201, 168, 76, 0.07) 45%,
        transparent 70%);
        pointer-events: none;
}
.km-hero-eyebrow {
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        color: var(--gold, #fbbf24);
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 1rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.2s ease forwards;
}
.km-hero-eyebrow::before, .km-hero-eyebrow::after {
        content: '';
        display: block;
        height: 1px;
        width: 40px;
        background: var(--gold-dim, #7a5c1e);
}
.km-hero-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.9rem, 4vw, 3.2rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.15;
        margin-bottom: 1rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.35s ease forwards;
}
.km-hero-title span { color: var(--gold, #fbbf24); }
.km-hero-sub {
        font-size: 1rem;
        font-weight: 300;
        color: var(--muted, #9a9098);
        max-width: 580px;
        margin: 0 auto 2rem;
        line-height: 1.8;
        opacity: 0;
        animation: fadeUp 0.9s 0.5s ease forwards;
}

/* Ashtakoot quick-ref pills */
.km-koot-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 0.5rem;
        opacity: 0;
        animation: fadeUp 0.9s 0.65s ease forwards;
}
.km-koot-pill {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        color: var(--text, #e8e4d8);
        background: rgba(201,168,76,0.07);
        border: 1px solid rgba(201,168,76,0.2);
        border-radius: 30px;
        padding: 5px 16px;
}
.km-koot-pill strong { color: var(--gold, #fbbf24); }

@keyframes fadeUp {
        to { opacity: 1; transform: translateY(0); }
        from { opacity: 0; transform: translateY(18px); }
}

/* ── SECTION WRAPPER ────────────────────────────────────────────── */
.km-section {
        background: var(--mid, #141428);
        border-top: 1px solid rgba(201,168,76,0.08);
        padding: 56px 0;
}
.km-section-alt {
        background: var(--deep, #0d0d18);
        border-top: 1px solid rgba(201,168,76,0.08);
        padding: 56px 0;
}

.km-section-title {
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        color: var(--gold, #fbbf24);
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.6rem;
}
.km-section-h2 {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.2rem, 2.5vw, 1.7rem);
        font-weight: 600;
        color: #fff;
        margin-bottom: 0;
}

/* ── INPUT PANELS (Groom / Bride) ───────────────────────────────── */
.km-party-panel {
        background: var(--surface, #1c1c38);
        border: 1px solid rgba(201,168,76,0.14);
        border-radius: 6px;
        padding: 32px 28px 28px;
        height: 100%;
        transition: border-color 0.3s;
}
.km-party-panel:hover {
        border-color: rgba(201,168,76,0.3);
}

.km-party-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(201,168,76,0.1);
}
.km-party-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(201,168,76,0.08);
        border: 1px solid rgba(201,168,76,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--gold, #fbbf24);
        flex-shrink: 0;
}
.km-party-title {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin: 0;
}

.km-fetch-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
        align-items: center;
}
.km-fetch-btns .km-divider-label {
        font-size: 0.75rem;
        color: var(--muted, #9a9098);
        letter-spacing: 0.1em;
        white-space: nowrap;
}

/* Dark-theme form controls */
.km-party-panel label {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted, #9a9098);
        margin-bottom: 5px;
        display: block;
}
.km-party-panel input[type="text"],
.km-party-panel input[type="number"],
.km-party-panel select,
.km-party-panel textarea {
        background: var(--deep, #0d0d18) !important;
        border: 1px solid rgba(201,168,76,0.18) !important;
        border-radius: 3px !important;
        color: var(--text, #e8e4d8) !important;
        font-family: 'Lato', sans-serif !important;
        font-size: 0.88rem !important;
        padding: 8px 10px !important;
        transition: border-color 0.2s !important;
        outline: none !important;
}
.km-party-panel input:focus,
.km-party-panel select:focus {
        border-color: var(--gold, #fbbf24) !important;
        box-shadow: none !important;
}
.km-party-panel input::placeholder { color: rgba(154,144,152,0.45) !important; }
.km-party-panel select option { background: var(--deep, #0d0d18); color: var(--text, #e8e4d8); }

/* Readonly coordinate fields */
.km-party-panel input[readonly] {
        background: rgba(13,13,24,0.6) !important;
        color: var(--muted, #9a9098) !important;
        cursor: default;
}

/* inline short inputs */
.inline-inputs { display: flex; gap: 6px; flex-wrap: wrap; }
.inline-inputs .short-input  { width: 60px !important; }
.inline-inputs .medium-input { width: 90px !important; }

/* Choices.js overrides for dark theme */
.km-party-panel .choices__inner {
        background: var(--deep, #0d0d18) !important;
        border: 1px solid rgba(201,168,76,0.18) !important;
        border-radius: 3px !important;
        color: var(--text, #e8e4d8) !important;
        min-height: 36px !important;
}
.km-party-panel .choices__list--dropdown {
        background: var(--surface, #1c1c38) !important;
        border: 1px solid rgba(201,168,76,0.25) !important;
}
.km-party-panel .choices__item--selectable:hover,
.km-party-panel .choices__item--selectable.is-highlighted {
        background: rgba(201,168,76,0.12) !important;
}
.km-party-panel .choices__input {
        background: transparent !important;
        color: var(--text, #e8e4d8) !important;
}

/* error text */
.km-party-panel .error {
        font-size: 0.75rem;
        color: #e05555;
        margin-top: 3px;
        min-height: 16px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn-km-primary {
        font-family: 'Cinzel', serif;
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 11px 28px;
        background: linear-gradient(135deg, var(--gold, #c9a84c) 0%, #a07830 100%);
        color: #0d0d18;
        font-weight: 700;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
}
.btn-km-primary:hover {
        background: linear-gradient(135deg, var(--gold-light, #e8c97a) 0%, var(--gold, #c9a84c) 100%);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-km-secondary {
        font-family: 'Cinzel', serif;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 9px 18px;
        background: transparent;
        color: var(--gold, #fbbf24);
        border: 1px solid var(--gold-dim, #7a5c1e);
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.25s;
        white-space: nowrap;
}
.btn-km-secondary:hover {
        background: rgba(201,168,76,0.08);
        border-color: var(--gold, #fbbf24);
        color: var(--gold-light, #e8c97a);
}

/* submit button (full width) */
.km-submit-wrap {
        text-align: center;
        padding: 32px 0 8px;
}
.btn-km-submit {
        font-family: 'Cinzel', serif;
        font-size: 0.8rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        padding: 16px 56px;
        background: linear-gradient(135deg, var(--gold, #c9a84c) 0%, #a07830 100%);
        color: #0d0d18;
        font-weight: 700;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        transition: all 0.3s;
}
.btn-km-submit:hover {
        background: linear-gradient(135deg, var(--gold-light, #e8c97a) 0%, var(--gold, #c9a84c) 100%);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201,168,76,0.35);
}
.btn-km-submit i { margin-right: 10px; }

/* ── CHART CONTAINERS ───────────────────────────────────────────── */
.km-charts-section {
        background: var(--mid, #141428);
        border-top: 1px solid rgba(201,168,76,0.08);
        padding: 48px 0;
}

.km-chart-card {
        background: var(--surface, #1c1c38);
        border: 1px solid rgba(201,168,76,0.14);
        border-radius: 6px;
        padding: 20px 16px;
        margin-bottom: 20px;
}
.km-chart-label {
        font-family: 'Cinzel', serif;
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold, #fbbf24);
        text-align: center;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
}
.km-chart-label::before, .km-chart-label::after {
        content: '';
        display: block;
        height: 1px;
        width: 30px;
        background: var(--gold-dim, #7a5c1e);
}

/* SVG chart dark-theme fill overrides (if not already handled by vachmi_jyotish_style.css) */
.km-chart-card svg rect.svgChartElements,
.km-chart-card svg polygon.svgChartElements {
        fill: var(--deep, #0d0d18);
        stroke: rgba(201,168,76,0.35);
        stroke-width: 1;
}
.km-chart-card svg text.svgTextElements {
        fill: var(--muted, #9a9098);
        font-family: 'Lato', sans-serif;
        font-size: 10px;
}
.km-chart-card svg text.svgTextElementsCentred {
        fill: rgba(201,168,76,0.5);
        font-family: 'Cinzel', serif;
        font-size: 10px;
        text-anchor: middle;
}

/* Toggle chart button area */
.km-toggle-wrap {
        text-align: center;
        padding: 16px 0 8px;
}

/* ── ASHTAKOOT & KUNDALI BASICS OUTPUT ─────────────────────────── */
#kundali-basics-container,
#ashtakoota-container,
#responseOutput {
        /* These are JS-populated; just ensure they sit on the dark surface */
        color: var(--text, #e8e4d8);
}

/* ── DOSHA BOXES ────────────────────────────────────────────────── */
.km-dosha-section {
        background: var(--deep, #0d0d18);
        border-top: 1px solid rgba(201,168,76,0.08);
        padding: 48px 0 64px;
}

.km-dosha-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 32px;
}

.dosha-box {
        background: var(--surface, #1c1c38);
        border: 1px solid rgba(201,168,76,0.12);
        border-radius: 6px;
        padding: 28px 24px;
        transition: border-color 0.3s, transform 0.3s;
}
.dosha-box:hover {
        border-color: rgba(201,168,76,0.35);
        transform: translateY(-3px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.dosha-box.full-width { grid-column: 1 / -1; }

.dosha-title {
        font-family: 'Cinzel', serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gold-light, #fbbf24);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
}
.dosha-title .info-icon {
        font-size: 0.8rem;
        color: var(--muted, #9a9098);
        cursor: pointer;
        transition: color 0.2s;
}
.dosha-title .info-icon:hover { color: var(--gold, #fbbf24); }

.dosha-content {
        font-size: 0.87rem;
        color: var(--muted, #ebdee8);
        line-height: 1.75;
}

/* ── SAVED CHARTS MODAL ─────────────────────────────────────────── */
#savedChartsModal .modal-content {
        background: var(--surface, #1c1c38);
        border: 1px solid rgba(201,168,76,0.2);
        border-radius: 6px;
        color: var(--text, #e8e4d8);
}
#savedChartsModal .modal-header {
        border-bottom: 1px solid rgba(201,168,76,0.12);
        display: flex;
        align-items: center;
        gap: 12px;
}
#savedChartsModal .modal-title {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        color: var(--gold, #fbbf24);
}
#savedChartsModal .modal-footer {
        border-top: 1px solid rgba(201,168,76,0.12);
}
#savedChartsModal .list-group-item {
        background: var(--deep, #0d0d18);
        border: 1px solid rgba(201,168,76,0.1);
        color: var(--text, #e8e4d8);
        cursor: pointer;
}
#savedChartsModal .list-group-item:hover {
        background: rgba(201,168,76,0.07);
        color: var(--gold-light, #fbbf24);
}

/* ── SUBMENU BAR ────────────────────────────────────────────────── */
.submenu-bar {
        background: var(--surface, #1c1c38);
        border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
        .km-hero { padding: 56px 0 36px; }
        .km-party-panel { padding: 24px 18px; margin-bottom: 20px; }
        .km-koot-pills { gap: 7px; }
        .btn-km-submit { padding: 14px 36px; }
}



/* ── Design tokens ───────────────────────────────────────── */
:root {
        --gold:       #c9a84c;
        --gold-light: #e8c97a;
        --gold-dim:   #7a5c1e;
        --deep:       #0d0d18;
        --mid:        #141428;
        --surface:    #1c1c38;
        --surface2:   #232340;
        --text:       #e8e4d8;
        --muted:      #9a9098;
        --accent:     #7b5ea7;
        --accent2:    #4a3070;
        --red:        #c0392b;
}

/* ── Base overrides ──────────────────────────────────────── */
body { background: var(--deep); color: var(--text); font-family: 'Lato', sans-serif; }

/* ─────────────────────────────────────────────────────────
        HERO
───────────────────────────────────────────────────────── */
.consult-hero {
        position: relative;
        min-height: 92vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--deep);
}

/* Star-field canvas */
#starCanvas {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
}

/* Radial glow behind content */
.consult-hero::before {
        content: '';
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 900px;
        height: 900px;
        background: radial-gradient(ellipse at center,
        rgba(123, 94, 167, 0.22) 0%,
        rgba(201, 168, 76, 0.08) 40%,
        transparent 70%);
        pointer-events: none;
}

/* Decorative mandala ring */
.mandala-ring {
        position: absolute;
        right: -120px;
        top: 50%;
        transform: translateY(-50%);
        width: 580px;
        height: 580px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.12);
        box-shadow:
        0 0 0 40px rgba(201,168,76,0.04),
        0 0 0 80px rgba(201,168,76,0.02),
        0 0 0 120px rgba(123,94,167,0.06);
        opacity: 0;
        animation: ringReveal 2s 0.5s ease forwards;
}
.mandala-ring::before {
        content: '';
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 1px solid rgba(201,168,76,0.2);
}
.mandala-ring::after {
        content: '';
        position: absolute;
        inset: 60px;
        border-radius: 50%;
        border: 1px dashed rgba(201,168,76,0.15);
}

@keyframes ringReveal {
        to { opacity: 1; }
}

.hero-content {
        position: relative;
        z-index: 2;
        max-width: 680px;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 1s 0.3s ease forwards;
}

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

.hero-eyebrow {
        font-family: 'Cinzel', serif;
        font-size: 0.7rem;
        letter-spacing: 0.35em;
        color: var(--gold);
        text-transform: uppercase;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
        content: '';
        display: block;
        height: 1px;
        width: 40px;
        background: var(--gold-dim);
}

.hero-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(2.4rem, 5vw, 4rem);
        font-weight: 700;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 1.5rem;
}
.hero-title span {
        color: var(--gold);
        display: block;
}

.hero-subtitle {
        font-size: 1.1rem;
        font-weight: 300;
        line-height: 1.8;
        color: var(--muted);
        margin-bottom: 2.5rem;
        max-width: 520px;
}

.hero-cta-group {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
}

.btn-gold {
        font-family: 'Cinzel', serif;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 14px 34px;
        background: linear-gradient(135deg, var(--gold) 0%, #a07830 100%);
        color: #0d0d18;
        font-weight: 700;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
}
.btn-gold:hover {
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        color: #0d0d18;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(201,168,76,0.35);
        text-decoration: none;
}

.btn-outline-gold {
        font-family: 'Cinzel', serif;
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 13px 32px;
        background: transparent;
        color: var(--gold);
        border: 1px solid var(--gold-dim);
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
}
.btn-outline-gold:hover {
        background: rgba(201,168,76,0.08);
        border-color: var(--gold);
        color: var(--gold-light);
        text-decoration: none;
}

/* Hero stats bar */
.hero-stats {
        display: flex;
        gap: 40px;
        margin-top: 3.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(201,168,76,0.12);
        flex-wrap: wrap;
}
.stat-item .stat-num {
        font-family: 'Cinzel', serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
}
.stat-item .stat-label {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        color: var(--muted);
        text-transform: uppercase;
        margin-top: 4px;
}

/* ─────────────────────────────────────────────────────────
        SECTION STYLES
───────────────────────────────────────────────────────── */
.section-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), transparent);
        margin: 0 auto 2rem;
}

.section-eyebrow {
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        letter-spacing: 0.4em;
        color: var(--gold);
        text-transform: uppercase;
        display: block;
        margin-bottom: 0.8rem;
}

.section-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 600;
        color: #fff;
        line-height: 1.25;
}

/* ─────────────────────────────────────────────────────────
        HOW IT WORKS
───────────────────────────────────────────────────────── */
.how-it-works {
        background: var(--mid);
        padding: 80px 0;
        position: relative;
}
.how-it-works::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.step-card {
        background: var(--surface);
        border: 1px solid rgba(201,168,76,0.1);
        border-radius: 4px;
        padding: 36px 28px;
        text-align: center;
        position: relative;
        transition: all 0.3s;
        height: 100%;
}
.step-card:hover {
        border-color: rgba(201,168,76,0.35);
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.step-number {
        font-family: 'Cinzel', serif;
        font-size: 3rem;
        font-weight: 900;
        color: rgba(201,168,76,0.12);
        line-height: 1;
        margin-bottom: 16px;
}
.step-icon {
        font-size: 1.8rem;
        color: var(--gold);
        margin-bottom: 16px;
}
.step-title {
        font-family: 'Cinzel', serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
        letter-spacing: 0.05em;
}
.step-desc {
        font-size: 0.88rem;
        color: var(--muted);
        line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
        SERVICE TOPICS
───────────────────────────────────────────────────────── */
.topics-section {
        background: var(--deep);
        padding: 80px 0;
}

.topic-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--surface);
        border: 1px solid rgba(201,168,76,0.12);
        border-radius: 40px;
        padding: 10px 22px;
        margin: 6px;
        font-size: 0.85rem;
        color: var(--text);
        transition: all 0.25s;
        cursor: default;
}
.topic-pill:hover {
        border-color: var(--gold);
        background: rgba(201,168,76,0.08);
        color: var(--gold-light);
}
.topic-pill i { color: var(--gold); font-size: 0.8rem; }

/* ─────────────────────────────────────────────────────────
        PRICING
───────────────────────────────────────────────────────── */
.pricing-section {
        background: var(--mid);
        padding: 80px 0;
        position: relative;
}
.pricing-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.pricing-card {
        background: var(--surface);
        border: 1px solid rgba(201,168,76,0.15);
        border-radius: 6px;
        padding: 40px 32px;
        text-align: center;
        position: relative;
        transition: all 0.35s;
        height: 100%;
}
.pricing-card.featured {
        background: linear-gradient(160deg, var(--surface2) 0%, rgba(123,94,167,0.15) 100%);
        border-color: var(--gold);
        transform: scale(1.04);
        box-shadow: 0 0 60px rgba(201,168,76,0.15), 0 30px 60px rgba(0,0,0,0.5);
}
.pricing-card:not(.featured):hover {
        border-color: rgba(201,168,76,0.4);
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.pricing-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, var(--gold), #a07830);
        color: var(--deep);
        font-family: 'Cinzel', serif;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        padding: 5px 20px;
        border-radius: 20px;
        white-space: nowrap;
}

.pricing-duration {
        font-family: 'Cinzel', serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
}
.pricing-type {
        font-size: 0.78rem;
        letter-spacing: 0.15em;
        color: var(--muted);
        text-transform: uppercase;
        margin-bottom: 28px;
}
.pricing-price-inr {
        font-family: 'Cinzel', serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
}
.pricing-price-usd {
        font-size: 0.9rem;
        color: var(--muted);
        margin-top: 4px;
        margin-bottom: 28px;
}

.pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
        text-align: left;
}
.pricing-features li {
        font-size: 0.87rem;
        color: var(--muted);
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        display: flex;
        align-items: center;
        gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────
        CONSULTATION MODES
───────────────────────────────────────────────────────── */
.modes-section {
        background: var(--deep);
        padding: 80px 0;
}

.mode-card {
        background: var(--surface);
        border: 1px solid rgba(201,168,76,0.1);
        border-radius: 6px;
        padding: 40px 32px;
        height: 100%;
        transition: all 0.3s;
}
.mode-card:hover {
        border-color: rgba(201,168,76,0.35);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mode-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(201,168,76,0.08);
        border: 1px solid rgba(201,168,76,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 1.6rem;
        color: var(--gold);
}
.mode-title {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px;
}
.mode-desc {
        font-size: 0.88rem;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 16px;
}
.mode-tag {
        display: inline-block;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
        border: 1px solid var(--gold-dim);
        padding: 4px 12px;
        border-radius: 20px;
}

/* ─────────────────────────────────────────────────────────
        WHY ASTROVACHMI
───────────────────────────────────────────────────────── */
.why-section {
        background: var(--mid);
        padding: 80px 0;
        position: relative;
}
.why-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.why-item {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
        align-items: flex-start;
}
.why-icon {
        width: 48px;
        height: 48px;
        border-radius: 4px;
        background: rgba(201,168,76,0.08);
        border: 1px solid rgba(201,168,76,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--gold);
        flex-shrink: 0;
        margin-top: 2px;
}
.why-title {
        font-family: 'Cinzel', serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
}
.why-desc {
        font-size: 0.87rem;
        color: var(--muted);
        line-height: 1.7;
}

/* Side image column */
.why-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
}
.why-visual-inner {
        width: 360px;
        height: 420px;
        border-radius: 8px;
        background: linear-gradient(160deg, var(--surface2), var(--accent2));
        border: 1px solid rgba(201,168,76,0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
        overflow: hidden;
}
.why-visual-inner::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -40%;
        width: 80%;
        height: 80%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
}
.why-big-glyph {
        font-size: 6rem;
        opacity: 0.15;
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-family: 'Cinzel', serif;
}
.why-quote {
        font-family: 'Cinzel', serif;
        font-size: 1rem;
        font-style: italic;
        color: rgba(201,168,76,0.7);
        text-align: center;
        padding: 0 32px;
        line-height: 1.8;
        position: relative;
        z-index: 1;
}
.why-quote-author {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        color: var(--muted);
        text-transform: uppercase;
        position: relative;
        z-index: 1;
}


/* ─────────────────────────────────────────────────────────
        DISCLAIMER
───────────────────────────────────────────────────────── */
.disclaimer-section {
        background: var(--surface);
        border-top: 1px solid rgba(201,168,76,0.08);
        border-bottom: 1px solid rgba(201,168,76,0.08);
        padding: 32px 0;
}
.disclaimer-text {
        font-size: 0.78rem;
        color: var(--muted);
        line-height: 1.7;
        text-align: center;
}
.disclaimer-text strong { color: rgba(201,168,76,0.6); }

/* ─────────────────────────────────────────────────────────
        CTA BANNER
───────────────────────────────────────────────────────── */
.cta-banner {
        background: linear-gradient(135deg, #1a1035 0%, #0f0a20 50%, #1a1520 100%);
        border-top: 1px solid rgba(201,168,76,0.2);
        border-bottom: 1px solid rgba(201,168,76,0.2);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
}
.cta-banner::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(ellipse, rgba(201,168,76,0.1), transparent);
        pointer-events: none;
}
.cta-banner .cta-title {
        font-family: 'Cinzel', serif;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
}
.cta-banner .cta-sub {
        font-size: 1rem;
        color: var(--muted);
        margin-bottom: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
}

/* ─────────────────────────────────────────────────────────
        BOOKING MODAL / FORM
───────────────────────────────────────────────────────── */
.booking-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.75);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(6px);
}
.booking-overlay.active { display: flex; }

.booking-modal {
        background: var(--surface2);
        border: 1px solid rgba(201,168,76,0.25);
        border-radius: 8px;
        width: 90%;
        max-width: 520px;
        max-height: 90vh;
        overflow-y: auto;
        padding: 48px 40px;
        position: relative;
        animation: modalIn 0.35s ease;
}
@keyframes modalIn {
        from { opacity: 0; transform: scale(0.95) translateY(20px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
}

.booking-close {
        position: absolute;
        top: 16px; right: 20px;
        background: none;
        border: none;
        color: var(--muted);
        font-size: 1.4rem;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s;
}
.booking-close:hover { color: var(--gold); }

.booking-title {
        font-family: 'Cinzel', serif;
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
}
.booking-sub {
        font-size: 0.85rem;
        color: var(--muted);
        margin-bottom: 28px;
}

.form-group label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 6px;
}
.form-control-dark {
        width: 100%;
        background: var(--surface);
        border: 1px solid rgba(201,168,76,0.15);
        border-radius: 3px;
        padding: 10px 14px;
        color: var(--text);
        font-family: 'Lato', sans-serif;
        font-size: 0.9rem;
        transition: border-color 0.2s;
        outline: none;
        margin-bottom: 16px;
}
.form-control-dark:focus {
        border-color: var(--gold);
}
.form-control-dark::placeholder { color: rgba(154,144,152,0.5); }

.plan-selector {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
}
.plan-option {
        border: 1px solid rgba(201,168,76,0.15);
        border-radius: 4px;
        padding: 12px 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s;
}
.plan-option:hover, .plan-option.selected {
        border-color: var(--gold);
        background: rgba(201,168,76,0.07);
}
.plan-option .plan-dur {
        font-family: 'Cinzel', serif;
        font-size: 0.8rem;
        color: #fff;
        display: block;
}
.plan-option .plan-price {
        font-size: 0.75rem;
        color: var(--gold);
        display: block;
        margin-top: 3px;
}

.booking-success {
        display: none;
        text-align: center;
        padding: 20px 0;
}
.booking-success .success-icon {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 16px;
}
.booking-success h4 {
        font-family: 'Cinzel', serif;
        color: #fff;
        margin-bottom: 10px;
}
.booking-success p {
        font-size: 0.88rem;
        color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
        Responsive tweaks
───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
        .consult-hero { min-height: 100vh; padding: 80px 0 60px; }
        .mandala-ring { display: none; }
        .pricing-card.featured { transform: scale(1); }
        .why-visual { display: none; }
        .hero-stats { gap: 24px; }
        .booking-modal { padding: 36px 24px; }
        .plan-selector { grid-template-columns: 1fr; }
}
