/* ============================================================
   Divya Ujjain — Pilgrimage Guide
   Design system: a divine, premium saffron–gold theme
   ============================================================ */

:root {
    --saffron: #e2581f;
    --saffron-dark: #b8410e;
    --maroon: #5a1a0b;
    --gold: #c99a2e;
    --gold-light: #e6c46a;
    --cream: #fff8ef;
    --cream-2: #fdeedd;
    --ink: #2a1a12;
    --ink-soft: #5c4636;
    --white: #ffffff;
    --shadow-sm: 0 4px 14px rgba(90, 26, 11, 0.08);
    --shadow-md: 0 12px 30px rgba(90, 26, 11, 0.12);
    --shadow-lg: 0 24px 60px rgba(90, 26, 11, 0.18);
    --radius: 18px;
    --radius-sm: 12px;
    --maxw: 1200px;
    --head: "Marcellus", "Cormorant Garamond", Georgia, serif;
    --body: "Mukta", "Poppins", system-ui, -apple-system, sans-serif;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--head); font-weight: 400; line-height: 1.2; color: var(--maroon); letter-spacing: 0.3px; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--cream { background: var(--cream-2); }

/* Section heading */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.eyebrow {
    display: inline-block; font-family: var(--body); font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; font-size: 0.78rem; color: var(--saffron-dark);
    background: var(--cream-2); padding: 0.4rem 1rem; border-radius: 999px; margin-bottom: 1rem;
    border: 1px solid rgba(201, 154, 46, 0.35);
}
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 0.8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Decorative om / divider */
.divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0.5rem 0 0; color: var(--gold); }
.divider::before, .divider::after { content: ""; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--body);
    font-weight: 600; font-size: 1rem; padding: 0.9rem 1.8rem; border-radius: 999px;
    cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: var(--white); box-shadow: 0 10px 24px rgba(226, 88, 31, 0.35); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(226, 88, 31, 0.45); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, 0.7); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-3px); }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--maroon); box-shadow: 0 10px 24px rgba(201, 154, 46, 0.35); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201, 154, 46, 0.45); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(255, 248, 239, 0.85);
    backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201, 154, 46, 0.25);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark {
    width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--saffron), var(--maroon)); color: var(--gold-light);
    font-family: var(--head); font-size: 1.5rem; box-shadow: var(--shadow-sm);
}
.brand__name { font-family: var(--head); font-size: 1.4rem; color: var(--maroon); line-height: 1; }
.brand__name span { display: block; font-family: var(--body); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--saffron-dark); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a { font-weight: 600; font-size: 0.97rem; color: var(--ink); position: relative; padding: 0.3rem 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--saffron); transition: width var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--saffron-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone { font-weight: 700; color: var(--maroon); font-size: 0.95rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--maroon); border-radius: 3px; transition: var(--transition); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--maroon); }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.hero__bg img { transform: scale(1.05); animation: slowZoom 18s ease-in-out infinite alternate; }
@keyframes slowZoom { to { transform: scale(1.16); } }

/* Cross-fade hero slideshow (3 images, 8s each, ~24s loop) */
.hero__slide { position: absolute; inset: 0; opacity: 0; animation: heroFade 24s infinite; }
.hero__slide:first-child { opacity: 1; }
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 8s; }
.hero__slide:nth-child(3) { animation-delay: 16s; }
@keyframes heroFade {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    29%  { opacity: 1; }
    33%  { opacity: 0; }
    100% { opacity: 0; }
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(42, 26, 18, 0.35) 0%, rgba(90, 26, 11, 0.55) 55%, rgba(42, 26, 18, 0.85) 100%);
}
.hero__inner { padding: 6rem 0 4rem; max-width: 760px; }
.hero__tag { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.3); padding: 0.5rem 1.1rem; border-radius: 999px; margin-bottom: 1.4rem; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 7vw, 5rem); line-height: 1.05; text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, #ffe9a8, var(--gold-light) 45%, #ffd36b); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 2px 30px rgba(230, 196, 106, 0.4); }

/* soft golden glow accent in the hero */
.hero__glow { position: absolute; z-index: -1; width: 60vw; max-width: 780px; aspect-ratio: 1; right: -10vw; top: -12vw; border-radius: 50%; pointer-events: none;
    background: radial-gradient(circle, rgba(230,196,106,0.30), rgba(226,88,31,0.12) 45%, transparent 70%); filter: blur(6px); }

/* trust strip under hero buttons */
.hero__trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; color: rgba(255,255,255,0.9); font-size: 0.92rem; }
.hero__trust .stars { color: var(--gold-light); letter-spacing: 1px; }
.hero__trust b { color: #fff; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* staggered entrance for hero content */
.hero__inner > * { opacity: 0; transform: translateY(26px); animation: heroUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.18s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.31s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.44s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.57s; }
.hero__inner > *:nth-child(6) { animation-delay: 0.70s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }
.hero__sub { font-size: clamp(1.05rem, 2.5vw, 1.3rem); max-width: 620px; margin: 1.3rem 0 2.2rem; color: rgba(255, 255, 255, 0.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 3rem; }
.hero__stat strong { display: block; font-family: var(--head); font-size: 2rem; color: var(--gold-light); }
.hero__stat span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); letter-spacing: 0.5px; }

.scroll-cue { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ============================================================
   Feature strip (why visit)
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.feature { background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(201, 154, 46, 0.18); transition: transform var(--transition), box-shadow var(--transition); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; font-size: 1.6rem; background: var(--cream-2); color: var(--saffron-dark); margin-bottom: 1rem; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.feature p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   About / two-column
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.split__media::before { content: ""; position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.split__body h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.2rem; }
.split__body p { color: var(--ink-soft); margin-bottom: 1rem; }
.tick-list { list-style: none; margin: 1.4rem 0; display: grid; gap: 0.7rem; }
.tick-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 500; }
.tick-list li::before { content: "\1F549"; color: var(--saffron); font-size: 1.1rem; }

/* ============================================================
   Places / temple cards
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.place-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); transition: transform var(--transition), box-shadow var(--transition); }
.place-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.place-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.place-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.place-card:hover .place-card__img img { transform: scale(1.08); }
.place-card__badge { position: absolute; top: 0.9rem; left: 0.9rem; background: rgba(90, 26, 11, 0.82); color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 0.35rem 0.8rem; border-radius: 999px; }
.place-card__body { padding: 1.3rem 1.4rem 1.6rem; }
.place-card__body h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.place-card__body p { color: var(--ink-soft); font-size: 0.95rem; }
.place-card__body .meta { margin-top: 0.9rem; font-size: 0.85rem; color: var(--saffron-dark); font-weight: 600; display: flex; align-items: center; gap: 0.4rem; }

/* ============================================================
   Places — detailed alternating rows
   ============================================================ */
.places-detail-list { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }
.place-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
.place-detail__media { position: relative; }
.place-detail__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.place-detail__media::before { content: ""; position: absolute; inset: auto auto -14px -14px; width: 55%; height: 55%; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.place-detail:nth-child(even) .place-detail__media { order: 2; }
.place-detail:nth-child(even) .place-detail__media::before { inset: -14px -14px auto auto; }
.place-detail__badge { position: absolute; top: 1rem; left: 1rem; background: rgba(90, 26, 11, 0.85); color: var(--gold-light); font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px; }
.place-detail__index { font-family: var(--head); font-size: 0.9rem; color: var(--saffron-dark); letter-spacing: 2px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.6rem; }
.place-detail__index::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.place-detail__body h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0.5rem 0 0.8rem; }
.place-detail__body > p { color: var(--ink-soft); }
.place-facts { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.2rem; margin: 1.5rem 0; }
.place-facts li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.92rem; }
.place-facts i { color: var(--saffron); margin-top: 4px; width: 18px; text-align: center; flex-shrink: 0; }
.place-facts strong { display: block; font-family: var(--head); font-weight: 400; color: var(--maroon); font-size: 0.88rem; letter-spacing: 0.3px; }
.place-facts span { color: var(--ink-soft); line-height: 1.35; }
.place-tip { background: var(--cream-2); border-left: 3px solid var(--saffron); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.92rem; color: var(--ink); }
.place-tip i { color: var(--gold); margin-right: 0.3rem; }
@media (max-width: 760px) {
    .place-detail { grid-template-columns: 1fr; }
    .place-detail:nth-child(even) .place-detail__media { order: 0; }
    .place-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) { .place-facts { grid-template-columns: 1fr; } }

.place-cta { text-align: center; margin-top: clamp(3.5rem, 7vw, 5.5rem); background: linear-gradient(135deg, var(--cream-2), #fff); border: 1px solid rgba(201,154,46,0.3); border-radius: var(--radius); padding: clamp(2rem, 5vw, 3rem); box-shadow: var(--shadow-sm); }
.place-cta h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.6rem; }
.place-cta p { color: var(--ink-soft); max-width: 540px; margin: 0 auto 1.6rem; }
.place-cta__btns { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Hotels
   ============================================================ */
.hotel-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); border: 1px solid rgba(201,154,46,0.15); }
.hotel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hotel-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.hotel-card__body { padding: 1.2rem 1.3rem 1.5rem; }
.hotel-card__body h3 { font-size: 1.25rem; }
.stars { color: var(--gold); letter-spacing: 2px; margin: 0.3rem 0 0.5rem; }
.hotel-card__price { font-weight: 700; color: var(--maroon); }
.hotel-card__price span { font-weight: 400; color: var(--ink-soft); font-size: 0.85rem; }

/* ============================================================
   Packages
   ============================================================ */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.8rem; }
.package { background: var(--white); border-radius: var(--radius); padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(201,154,46,0.2); display: flex; flex-direction: column; transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.package:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package--featured { border: 2px solid var(--gold); background: linear-gradient(180deg, #fffdf8, var(--cream)); }
.package__ribbon { position: absolute; top: 1.4rem; right: -0.4rem; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; padding: 0.35rem 0.9rem; border-radius: 6px 0 0 6px; box-shadow: var(--shadow-sm); }
.package h3 { font-size: 1.5rem; }
.package__days { color: var(--saffron-dark); font-weight: 600; font-size: 0.9rem; margin-bottom: 1rem; }
.package__price { font-family: var(--head); font-size: 2.4rem; color: var(--maroon); margin: 0.5rem 0; }
.package__price small { font-family: var(--body); font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; }
.package ul { list-style: none; margin: 1.2rem 0 1.8rem; display: grid; gap: 0.6rem; }
.package ul li { display: flex; gap: 0.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.package ul li::before { content: "\2713"; color: var(--saffron); font-weight: 700; }
.package .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 1rem; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(201,154,46,0.18); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--head); font-size: 1.15rem; color: var(--maroon); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: "+"; font-size: 1.6rem; color: var(--saffron); transition: transform var(--transition); line-height: 1; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; color: var(--white); text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(90,26,11,0.88), rgba(226,88,31,0.82)); }
.cta-band__inner { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.cta-band p { max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; color: rgba(255,255,255,0.92); }

/* ============================================================
   Video showcase
   ============================================================ */
.video-showcase { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; background: var(--maroon); }
.video-showcase video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-showcase__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.2rem, 4vw, 2.5rem); background: linear-gradient(180deg, transparent 40%, rgba(42,26,18,0.82)); color: var(--white); pointer-events: none; }
.video-showcase__overlay h3 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2.2rem); }
.video-showcase__overlay p { color: rgba(255,255,255,0.9); max-width: 540px; }
.video-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.6rem; }
.video-grid .video-showcase:first-child { grid-row: span 2; aspect-ratio: auto; }
.video-grid .video-showcase { aspect-ratio: 16/10; }
@media (max-width: 760px) { .video-grid { grid-template-columns: 1fr; } .video-grid .video-showcase:first-child { grid-row: auto; aspect-ratio: 16/9; } }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { position: relative; color: var(--white); padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 7vw, 5rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(42,26,18,0.5), rgba(90,26,11,0.8)); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 6vw, 3.6rem); text-shadow: 0 3px 18px rgba(0,0,0,0.4); }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ============================================================
   Forms (booking, otp)
   ============================================================ */
.form-wrap { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid rgba(201,154,46,0.2); }
.form-wrap h2 { font-size: 1.8rem; margin-bottom: 0.4rem; text-align: center; }
.form-wrap .sub { text-align: center; color: var(--ink-soft); margin-bottom: 2rem; }
.fieldset { border: 1px solid rgba(201,154,46,0.25); border-radius: var(--radius-sm); padding: 1.4rem; margin-bottom: 1.6rem; }
.fieldset legend { padding: 0 0.6rem; font-family: var(--head); color: var(--saffron-dark); font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; color: var(--ink); }
.field input, .field select, .field textarea {
    width: 100%; padding: 0.8rem 0.9rem; border: 1.5px solid #e6d9c6; border-radius: 10px;
    font-family: var(--body); font-size: 1rem; background: var(--cream); color: var(--ink); transition: border var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(226,88,31,0.12); background: var(--white); }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 0.6rem; }
.check { display: flex; align-items: center; gap: 0.5rem; background: var(--cream); padding: 0.6rem 0.8rem; border-radius: 10px; border: 1.5px solid #e6d9c6; cursor: pointer; }
.check input { width: auto; }
.form-wrap .btn { width: 100%; justify-content: center; margin-top: 0.6rem; }

/* Flash / alerts */
.alert { padding: 0.9rem 1.1rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 500; }
.alert.success { background: #e3f4e6; color: #1f6b32; border: 1px solid #b9e3c1; }
.alert.danger { background: #fbe4e4; color: #8a2020; border: 1px solid #f1c2c2; }

/* OTP / success small card */
.mini-card { max-width: 440px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 2.4rem; text-align: center; border: 1px solid rgba(201,154,46,0.2); }
.mini-card .om { font-family: var(--head); font-size: 3rem; color: var(--saffron); }
.otp-input { letter-spacing: 0.5rem; text-align: center; font-size: 1.4rem !important; font-weight: 700; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(201,154,46,0.18); position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.testimonial::before { content: "\201C"; position: absolute; top: 0.4rem; right: 1.3rem; font-family: var(--head); font-size: 4.5rem; color: rgba(201,154,46,0.22); line-height: 1; }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; }
.testimonial blockquote { margin: 0 0 1.3rem; color: var(--ink); font-size: 1.02rem; line-height: 1.7; }
.testimonial figcaption { display: flex; align-items: center; gap: 0.8rem; }
.testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--head); font-size: 1.3rem; color: #fff; background: linear-gradient(135deg, var(--saffron), var(--maroon)); }
.testimonial figcaption strong { display: block; color: var(--maroon); }
.testimonial figcaption small { color: var(--ink-soft); }

/* subtle saffron-gold accent line at very top of the page */
.site-header::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron-dark)); }
.site-header { position: sticky; }

/* ============================================================
   WhatsApp — floating button + CTA card
   ============================================================ */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; z-index: 200; display: flex; align-items: center; gap: 0;
    background: #25d366; color: #fff; height: 60px; border-radius: 999px; padding: 0; overflow: hidden;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45); transition: gap var(--transition), padding var(--transition), transform var(--transition);
    animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float i { font-size: 1.9rem; width: 60px; min-width: 60px; display: grid; place-items: center; }
.wa-float__label { white-space: nowrap; max-width: 0; opacity: 0; font-weight: 600; transition: max-width var(--transition), opacity var(--transition), padding var(--transition); }
.wa-float:hover { transform: translateY(-2px); }
.wa-float:hover .wa-float__label { max-width: 160px; opacity: 1; padding-right: 1.2rem; }
@keyframes waPulse { 0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,0.45); } 50% { box-shadow: 0 10px 28px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12); } }

.wa-cta { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center; text-align: center;
    background: linear-gradient(135deg, #eafaf0, #d6f5e0); border: 1px solid #b3e6c6; border-radius: var(--radius);
    padding: 1.8rem 2rem; box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto; }
.wa-cta__icon { width: 64px; height: 64px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; font-size: 2rem; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.wa-cta__text { flex: 1 1 280px; text-align: left; }
.wa-cta__text h2 { font-size: 1.5rem; color: #128c3e; margin-bottom: 0.2rem; }
.wa-cta__text p { color: var(--ink-soft); font-size: 0.97rem; }
@media (max-width: 600px) { .wa-cta__text { text-align: center; } .wa-float__label { display: none; } }

.or-divider { display: flex; align-items: center; gap: 1rem; max-width: 820px; margin: 2rem auto; color: var(--ink-soft); }
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: rgba(201,154,46,0.4); }
.or-divider span { font-size: 0.9rem; letter-spacing: 0.5px; text-transform: uppercase; }

.form-wrap--slim { max-width: 820px; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.6rem; }
.form-actions .btn { width: 100%; justify-content: center; }
@media (max-width: 560px) { .form-actions { grid-template-columns: 1fr; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--maroon); color: rgba(255,255,255,0.82); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: var(--gold-light); font-size: 1.15rem; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,0.82); transition: color var(--transition); }
.site-footer a:hover { color: var(--gold-light); }
.footer-links { list-style: none; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.footer-brand .brand__name { color: var(--gold-light); }
.footer-brand p { margin-top: 1rem; font-size: 0.95rem; max-width: 320px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.1); }
.social a:hover { background: var(--saffron); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    .site-header.open .nav-links {
        display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
        background: var(--cream); padding: 1.4rem; gap: 1rem; box-shadow: var(--shadow-md); border-bottom: 2px solid var(--gold);
    }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero__stats { gap: 1.5rem; }
    .nav-cta .btn { padding: 0.7rem 1.2rem; font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
