/* ============================================================
   css/style.css
   ------------------------------------------------------------
   Single stylesheet for the whole site — every page links this
   one file, so a change here applies everywhere automatically.
   No build step / preprocessor: plain CSS with custom properties
   (the --variables below) standing in for Sass-style variables.

   How this file is organized (search for these ALL-CAPS section
   headers to jump around):
     Tokens          → colors, fonts, spacing shared everywhere
     Buttons         → .btn and its variants (primary/ghost etc.)
     Header / Nav    → sticky top nav + mobile hamburger menu
     Hero            → homepage hero banner only
     Services, Courses, Blog cards, Booking form, Monthly
     Horoscope, Footer → one section per matching part of the site
   ============================================================ */

/* ========================================================
   Tokens
   ------------------------------------------------------------
   Central palette + type tokens. Change a color here and it
   updates everywhere that references var(--name) below —
   never hard-code a hex value elsewhere in this file.
   ======================================================== */
:root {
  --ink: #1B1712;          /* primary body text color */
  --ink-soft: #4A4238;     /* secondary/muted text (descriptions, captions) */
  --indigo: #1F2A44;       /* mid-tone accent — links, ruling-planet-style text */
  --indigo-deep: #141C30;  /* darkest accent — headings, nav bg, CTA band bg */
  --marigold: #E8A33D;     /* primary brand accent — buttons, highlights */
  --marigold-deep: #C9821F;/* darker marigold — hover states, small accents */
  --sand: #FAF6EF;         /* warm off-white — alternating section backgrounds */
  --white: #FFFFFF;        /* page background */
  --line: #E7E0D2;
  --red:#D10000;
  --green:#02AD0A;
  --blue:#0365CE;         /* hairline borders/dividers throughout */

  --font-display: 'Merriweather', Georgia, serif;      /* headings */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; /* body text */

  --maxw: 1160px;  /* max content width used by .wrap (see below) */
  --gap: 24px;     /* default grid/flex gap used in a few card grids */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; } /* so in-page anchor jumps (e.g. horoscope "jump to nakshatra") animate instead of snapping */

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* .wrap is the content-width container used inside every <section> —
   centers content and caps it at --maxw with side padding for mobile. */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .25em;
  color: var(--indigo-deep);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.section { padding: 42px 0; }
.section--tint { background: var(--sand); }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head p { margin-bottom: 0; }

/* ========================================================
   Buttons
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 0px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--marigold) 0%, var(--marigold-deep) 100%);
  color: var(--indigo-deep);
  border-radius: 0px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(201,130,31,.25);
}
/*.btn--primary::before {
  content: "\263E";
  font-size: 1.05em;
  line-height: 1;
}*/
.btn--primary:hover {
  background: linear-gradient(135deg, var(--marigold-deep) 0%, var(--marigold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(201,130,31,.35);
}

.btn--ghost {
  border-color: var(--indigo);
  color: var(--indigo);
  background: transparent;
}
.btn--ghost:hover { background: var(--indigo); color: var(--white); }

.btn--on-dark {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn--on-dark:hover { background: rgba(255,255,255,.12); }

.btn--small { padding: 9px 18px; font-size: .85rem; }
.btn--block { width: 100%; justify-content: center; }

/* ========================================================
   Header / Nav
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-decoration: none;
  color: var(--indigo-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg { width: 26px; height: 26px; color: var(--marigold-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { border-bottom-color: var(--marigold); }

/* ------------------------------------------------------------
   Blog dropdown ("nav-dropdown")
   ------------------------------------------------------------
   Pure CSS, no JavaScript: the submenu is positioned absolutely
   under its parent <li>, hidden by default, and revealed either
   on mouse hover (:hover) or keyboard focus (:focus-within, so
   tabbing to a link inside it also opens it — important since
   dropdowns with only :hover are unusable by keyboard).
   On narrow/mobile screens (see the @media block further down)
   hover doesn't really work for touch, so it switches to an
   always-visible nested list instead of a hover flyout.
   ------------------------------------------------------------ */
.nav-dropdown {
  position: relative;
}
.nav-caret {
  font-size: .7em;
  margin-left: 2px;
  display: inline-block;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 10px;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(20, 28, 48, .12);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: .88rem;
  border-bottom: none; /* override the underline-on-hover style from .nav-links a */
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: var(--sand);
  color: var(--marigold-deep);
}
.nav-dropdown-divider {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 6px;
}
.nav-dropdown-divider a { font-weight: 600; }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--indigo-deep);
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-cta { margin-left: 0; }

  /* On mobile the menu is a tap-to-open stacked panel (not hover-driven),
     so a hover flyout doesn't make sense here. Instead, show the Blog
     dropdown's items as an always-visible indented sub-list, right under
     the "Blog" link, styled a bit smaller/muted to read as secondary. */
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 0 16px;
    margin-top: 6px;
    min-width: 0;
  }
  .nav-dropdown-menu a {
    padding: 6px 0;
    color: var(--ink-soft);
    white-space: normal;
  }
  .nav-dropdown-divider { border-top: none; margin-top: 0; padding-top: 0; }
}

/* ========================================================
   Hero
   ======================================================== */
.hero {
  position: relative;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  padding-top: 90px;
  padding-bottom: 90px;
  min-height: 560px;
}
.hero-eyebrow {
  color: var(--marigold-deep);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 5px;
}
.hero h1 { color: var(--indigo-deep); max-width: 12ch; }
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.0rem;
  max-width: 42ch;
  margin-bottom: 0.5rem;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art { position: relative; z-index: 1; }
.hero-art svg { width: 100%; height: auto; }
.hero-art-img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 28px rgba(31,42,68,.14));
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .9;
}

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; min-height: auto; }
  .hero-art { order: -1; max-width: 260px; margin: 0 auto 8px; }
}

/* ========================================================
   Features / Benefits (icon rows)
   ======================================================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.icon-item svg { width: 34px; height: 34px; margin-bottom: 18px; color: var(--marigold-deep); }
.icon-item h3 { margin-bottom: 8px; font-size: 1.08rem; }
.icon-item p { font-size: .95rem; margin: 0; }

@media (max-width: 900px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .icon-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Visual break (full-bleed stone carving band)
   ======================================================== */
.stone-break {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.stone-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stone-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,28,48,.75) 0%, rgba(20,28,48,.15) 45%, rgba(20,28,48,.05) 100%);
}
.stone-break-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding-bottom: 28px;
}
.stone-break-caption p {
  color: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  max-width: 46ch;
  margin: 0;
}
@media (max-width: 700px) {
  .stone-break { height: 260px; }
}

/* ========================================================
   Services
   ======================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.service-card {
  background: transparent;
  padding: 36px 30px 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  position: relative;
}
.service-card:first-child { border-left: none; }
.service-card--featured {
  border-top: 2px solid var(--marigold);
  margin-top: -1px;
  padding-top: 34px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: .93rem; margin-bottom: 22px; }
.service-price {
  font-family: var(--font-display);
  font-size: 1.0rem;
  color: var(--indigo-deep);
  margin-bottom: 4px;
}
.service-price span {
  font-family: var(--font-body);
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 400;
  margin-left: 2px;
}
.service-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--ink);
  text-underline-offset: 4px;
  width: fit-content;
}
.service-link:hover { color: var(--marigold-deep); text-decoration-color: var(--marigold-deep); }

@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .service-card {
    border-left: none;
    border-top: 2px solid var(--line);
    padding-top: 30px;
  }
  .service-card--featured { border-top: 2px solid var(--marigold); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Testimonials
   ======================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.testi-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--white);
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 10px;
}
.testi-name { font-weight: 600; font-size: .80rem; color: var(--indigo-deep); }
.testi-role { font-size: .70rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Blog cards (shared: home preview + blog index)
   ======================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.blog-card {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  aspect-ratio: 4/3;
  background: var(--sand);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-card-tag {
  font-size: .78rem;
  color: var(--marigold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.blog-card p { font-size: .92rem; margin-bottom: 0; }
.blog-card-date { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.section-foot-link {
  margin-top: 40px;
  text-align: center;
}
/*===========================
Payment
==============================*/
/* .legal-body is the same plain-prose text style used on
     terms.html/privacy.html/consent.html — repeated here rather than
     added to the shared stylesheet, matching how those pages do it. */
  .legal-body { max-width: 720px; }
  .legal-body p { font-size: .98rem; color: var(--ink-soft); }

  /* Payments section: PayPal + UPI side by side, divided the same
     way .service-grid divides its cards (hairline border-left),
     just as a simple 2-column variant. */
  .pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
  }
  .pay-card {
    padding: 22px 30px 2px 30px;
    border-left: 1px solid var(--line);
  }
  .pay-card:first-child { border-left: none; }
  .pay-card h3 { margin-bottom: 8px; }
  .pay-card .btn { margin-top: 10px; margin-bottom: 14px; }
  .pay-qr {
    width: 220px;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--sand);
    border: 1px solid var(--line);
    margin: 10px 0 14px;
    overflow: hidden;
  }
  .pay-qr img { width: 100%; height: 100%; object-fit: contain; }
  .pay-upi-id { font-size: .95rem; color: var(--ink); }
  .pay-note { font-size: .82rem; color: var(--ink-soft); font-style: italic; }

  @media (max-width: 700px) {
    .pay-grid { grid-template-columns: 1fr; }
    .pay-card { border-left: none; border-top: 1px solid var(--line); }
    .pay-card:first-child { border-top: none; }
  }


/* ========================================================
   Final CTA band
   ======================================================== */
.cta-band {
  background: var(--indigo-deep);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 2; }
.cta-band p {
  color: rgba(255,255,255,.75);
  max-width: 46ch;
  margin: 0 auto 30px;
  position: relative;
  z-index: 2;
}
.cta-band .btn { position: relative; z-index: 2; }
.cta-band--photo .cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}
.cta-band--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(20,28,48,.35) 0%, rgba(20,28,48,.88) 75%);
  z-index: 1;
}

/* ========================================================
   Footer
   ======================================================== */
.site-footer {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr .9fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 12px; color: var(--indigo-deep); }
.footer-col h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 5px; }
.footer-col a { text-decoration: none; font-size: .8rem; }
.footer-col a:hover { color: var(--marigold-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: .8rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Page header (for interior pages)
   ======================================================== */
.page-header {
  background: var(--indigo-deep);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,.75); max-width: 50ch; margin: 0; }

/* ========================================================
   Blog index / search
   ======================================================== */
.blog-search {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  max-width: 480px;
}
.blog-search input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: .95rem;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
.blog-search input:focus {
  outline: 2px solid var(--marigold);
  outline-offset: 1px;
}
.blog-empty {
  padding: 40px 0;
  color: var(--ink-soft);
  display: none;
}
.blog-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.blog-tag-btn {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 7px 15px;
  font-size: .85rem;
  border-radius: 20px;
  cursor: pointer;
  color: var(--ink-soft);
}
.blog-tag-btn.is-active {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

/* ========================================================
   Monthly Horoscope
   ======================================================== */
.nak-jump-title { font-size: 1.4rem; margin-bottom: 8px; }
.nak-jump-sub { font-size: .93rem; margin-bottom: 26px; max-width: 640px; }
.nak-jump-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.nak-jump-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.nak-jump-btn:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}

.nak-updated {
  font-size: .92rem;
  color: var(--ink-soft);
  background: var(--sand);
  border: 1px solid var(--line);
  padding: 14px 18px;
  margin-bottom: 40px;
  max-width: 760px;
}
.nak-list {
  border-top: 1px solid var(--line);
  max-width: 820px;
}
/* Each nakshatra "card": a header row (name + ruling-planet chip), then a
   prominent date-range line (this is the info someone scanning the page
   cares about most — when does this nakshatra's window fall this month),
   then the short prediction paragraph. */
.nak-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  /* Offsets the anchor-jump target so the sticky header doesn't cover the
     top of the card when a "Find Your Nakshatra" button scrolls here. */
  scroll-margin-top: 96px;
}
.nak-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.nak-row-head h3 {
  font-size: 1.05rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Small pill showing the nakshatra's ruling planet (e.g. "KETU"). */
.nak-ruler {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--marigold-deep);
  background: var(--sand);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 20px;
}
/* Date range — deliberately the most visually prominent line in each card
   (bold serif, marigold accent) since it's the detail most people scan
   the page for: "when is my nakshatra's window this month?" */
.nak-dates {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--marigold-deep);
  margin-bottom: 10px;
}
.nak-row p { font-size: .95rem; margin: 0; }

/* ========================================================
   Courses
   ======================================================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.course-card {
  border: 1px solid var(--line);
  padding: 32px;
}
.course-level {
  font-size: .78rem;
  font-weight: 600;
  color: var(--marigold-deep);
  margin-bottom: 10px;
}
.course-card h3 { margin-bottom: 10px; }
.course-meta {
  display: flex;
  gap: 18px;
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 16px 0 20px;
}
@media (max-width: 700px) {
  .course-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   Booking form
   ======================================================== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.form-wrap { max-width: 640px; }

.booking-sidebar {
  position: sticky;
  top: 100px;
}
.booking-sidebar h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.booking-service-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid var(--line);
}
/*.booking-service-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}*/
.booking-service-list li {
  display: flex;
  flex-direction: column; /* Stacks text cleanly for mobile/sidebar width */
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
/* On screens/containers wide enough, put them side-by-side */
@media (min-width: 480px) {
  .booking-service-list li {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }
}
.booking-service-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--indigo);
  white-space: nowrap; /* Prevents "10-min Audio" from breaking awkwardly */
}
.booking-service-price {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--indigo-deep);
  text-align: right;
  
}
@media (min-width: 480px) {
  .booking-service-price {
    text-align: right;
  }
}
.booking-sidebar-note {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0 0 6px 0;
  line-height: 1.4;
}
.booking-sidebar-note a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booking-sidebar-note a:hover { color: var(--marigold-deep); }

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .booking-sidebar { position: static; }
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--indigo-deep);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: .95rem;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--marigold);
  outline-offset: 1px;
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-two { grid-template-columns: 1fr; } }

.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  border: 1px solid var(--marigold);
  background: var(--sand);
  padding: 20px;
  margin-bottom: 24px;
  font-size: .95rem;
}

/*deployed*/

.consultation-form {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: .95rem;
    border-radius: 3px;
    background: var(--white);
    color: var(--ink);

}
.form-group {
    margin-bottom: 24px;
}
.form-group > label {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--indigo-deep);
}
.required {
    color: #d93025;
}
input[type="text"],
input[type="email"],
input[type="date"],
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
textarea:focus {
    border-color: var(--indigo-deep);
    outline: none;
}
.radio-option, .checkbox-option {
    margin: 8px 0;
}
.radio-option label, .checkbox-option label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    /*font-weight: normal;
    line-height: 1.4;*/
}
.notice-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--indigo-deep);
    padding: 14px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 13.5px;
    color: #3c4043;
}
.notice-card p {
    margin: 6px 0 0;
}
.submit-btn {
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.submit-btn:hover {
    background-color: #1557b0;
}


/* ========================================================
   Accessibility
   ======================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--marigold-deep);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
