/* ═══════════════════════════════════════════
   ANTRIXYA — STYLESHEET
   Colors: Burgundy #7B2336 | Parchment #EDE8DC | Charcoal #2C2824
═══════════════════════════════════════════ */

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

:root {
  --burgundy:    #7B2336;
  --burgundy-dk: #5A1828;
  --burgundy-lt: #9B4458;
  --parchment:   #EDE8DC;
  --parchment-dk:#DDD6C7;
  --parchment-lt:#F7F3EC;
  --charcoal:    #2C2824;
  --charcoal-lt: #5C5650;
  --gold:        #C8A96E;
  --gold-lt:     #E2C99A;
  --white:       #FFFDF8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'Jost', sans-serif;

  --nav-h: 80px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(44,40,36,0.12);
  --shadow-lg: 0 12px 48px rgba(44,40,36,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--parchment-lt);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--burgundy); }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-ui); border: none; }
ul { list-style: none; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ── SCROLLBAR ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius: 3px; }

/* ── UTILITY ─────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}
.section__eyebrow--light { color: var(--gold-lt); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section__title--light { color: var(--parchment-lt); }

.section__sub {
  font-size: 1.05rem;
  color: var(--charcoal-lt);
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__header .section__sub {
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--burgundy-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(123,35,54,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--parchment-lt);
  border: 1.5px solid rgba(237,232,220,0.5);
}
.btn--outline:hover {
  background: rgba(237,232,220,0.1);
  color: var(--white);
  border-color: var(--parchment-lt);
}
/* Outline on light sections */
.about .btn--outline,
.services .btn--outline,
.faq .btn--outline,
.contact .btn--outline {
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.about .btn--outline:hover,
.services .btn--outline:hover,
.faq .btn--outline:hover,
.contact .btn--outline:hover {
  background: var(--burgundy);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--parchment-lt);
  border: 1.5px solid rgba(237,232,220,0.5);
}
.btn--outline-light:hover {
  background: rgba(237,232,220,0.15);
  color: var(--white);
}

.btn--lg { padding: 1rem 2.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: var(--parchment-lt);
  box-shadow: 0 2px 20px rgba(44,40,36,0.1);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
  margin-right: auto;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--parchment-lt);
  transition: color 0.3s;
  text-align: center;
}
.nav.scrolled .nav__logo-name { color: var(--burgundy); }

.nav__logo-arrow {
  width: 155px;
  height: 7px;
  display: block;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.nav.scrolled .nav__logo-arrow { opacity: 1; }

.nav__logo-tag {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(237,232,220,0.6);
  transition: color 0.3s;
  text-align: center;
  white-space: nowrap;
}
.nav.scrolled .nav__logo-tag { color: var(--charcoal-lt); }

.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.8);
  transition: color 0.2s;
}
.nav.scrolled .nav__links a { color: var(--charcoal-lt); }
.nav__links a { color: var(--charcoal-lt); }
.nav__links a:hover,
.nav.scrolled .nav__links a:hover { color: var(--burgundy); }

.nav__cta { margin-left: 1rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s;
}
.nav.scrolled .nav__hamburger span { background: var(--white); }

.nav__mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--parchment-lt);
  box-shadow: var(--shadow);
  padding: 1.5rem 2rem 2rem;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 1rem; }
.nav__mobile a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav__mobile .btn { margin-top: 0.5rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1A1108;
  overflow: hidden;
}

/* Rich layered dark texture */
.hero__texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(123,35,54,0.45) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200,169,110,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(90,24,40,0.3) 0%, transparent 45%);
  opacity: 1;
}

/* Decorative compass mandala — now subtle on parchment */
.hero__mandala {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='95' stroke='%237B2336' stroke-width='0.6' fill='none' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='75' stroke='%237B2336' stroke-width='0.6' fill='none' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='55' stroke='%237B2336' stroke-width='0.6' fill='none' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='35' stroke='%237B2336' stroke-width='0.6' fill='none' opacity='0.12'/%3E%3Ccircle cx='100' cy='100' r='15' stroke='%237B2336' stroke-width='0.6' fill='none' opacity='0.15'/%3E%3Cline x1='5' y1='100' x2='195' y2='100' stroke='%237B2336' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='100' y1='5' x2='100' y2='195' stroke='%237B2336' stroke-width='0.5' opacity='0.1'/%3E%3Cline x1='33' y1='33' x2='167' y2='167' stroke='%237B2336' stroke-width='0.4' opacity='0.08'/%3E%3Cline x1='167' y1='33' x2='33' y2='167' stroke='%237B2336' stroke-width='0.4' opacity='0.08'/%3E%3Cpolygon points='100,10 104,96 100,92 96,96' fill='%237B2336' opacity='0.2'/%3E%3Cpolygon points='100,190 104,104 100,108 96,104' fill='%237B2336' opacity='0.1'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 1;
  animation: rotate-slow 90s linear infinite;
}

/* Left decorative border line */
.hero::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.5), transparent);
  opacity: 1;
}
.hero::after {
  content: '';
  position: absolute;
  right: 3rem;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.5), transparent);
  opacity: 1;
}

@keyframes rotate-slow { to { transform: translateY(-50%) rotate(360deg); } }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo image in hero */
.hero__logo {
  height: 90px;
  width: auto;
  margin: 0 auto 2rem;
  animation: fade-up 1s 0s ease both;
}

/* Big bold VASTU CONSULTANCY label */
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.6rem;
  animation: fade-up 1s 0.1s ease both;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--parchment-lt);
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: fade-up 1s 0.2s ease both;
  text-shadow: 0 2px 40px rgba(123,35,54,0.4);
}

/* NEW: prominent vastu label */
.hero__vastu-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem auto 1.25rem;
  animation: fade-up 1s 0.3s ease both;
}
.hero__vastu-badge::before,
.hero__vastu-badge::after {
  content: '';
  display: block;
  width: 52px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.8;
}
.hero__vastu-badge span {
  font-family: var(--font-ui);
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(237,232,220,0.7);
  margin-bottom: 1.25rem;
  animation: fade-up 1s 0.35s ease both;
}

.hero__arrow {
  width: 200px;
  margin: 0 auto 2rem;
  animation: fade-up 1s 0.4s ease both;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(237,232,220,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  animation: fade-up 1s 0.45s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s 0.55s ease both;
}

/* Trust strip under buttons */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  animation: fade-up 1s 0.65s ease both;
}
.hero__trust-item {
  text-align: center;
}
.hero__trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}
.hero__trust-item span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.45);
}
.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(237,232,220,0.12);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll span {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.35);
  opacity: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(237,232,220,0.4), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ── ABOUT ────────────────────────────────────── */
.about { background: var(--parchment-lt); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 360px;
  background: linear-gradient(135deg, var(--parchment-dk), var(--parchment));
  border: 1.5px solid var(--parchment-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--burgundy);
  opacity: 0.3;
}

.about__initials {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--burgundy);
  opacity: 0.3;
  letter-spacing: 0.2em;
}

.about__ornament {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--burgundy);
  border-style: solid;
  opacity: 0.6;
}
.about__ornament.top-left    { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.about__ornament.top-right   { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.about__ornament.bottom-left { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.about__ornament.bottom-right{ bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--parchment-lt);
  text-align: center;
  box-shadow: var(--shadow);
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.about__badge-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1.3;
}

.about__role {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}

.about__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.about__bio {
  color: var(--charcoal-lt);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.about__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--charcoal-lt);
}
.about__cred-icon { color: var(--burgundy); flex-shrink: 0; }

/* ── VASTU ────────────────────────────────────── */
.vastu {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

.vastu__bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='38' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3Cline x1='2' y1='40' x2='78' y2='40' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3Cline x1='40' y1='2' x2='40' y2='78' stroke='%23ffffff' stroke-width='0.3' opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
}

.vastu__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.vastu__intro {
  color: rgba(237,232,220,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.vastu__pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.vastu__pillar {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(237,232,220,0.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s;
}
.vastu__pillar:hover {
  border-color: rgba(123,35,54,0.4);
  background: rgba(123,35,54,0.08);
}

.vastu__pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.vastu__pillar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--parchment-lt);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.vastu__pillar p {
  font-size: 0.85rem;
  color: rgba(237,232,220,0.55);
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────── */
.services { background: var(--parchment-lt); }

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--parchment-dk);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card--premium {
  background: var(--charcoal);
  border-color: var(--burgundy-dk);
}

.service-card__tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.service-card__tag--premium {
  background: var(--gold);
  color: var(--charcoal);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.service-card--premium .service-card__title { color: var(--parchment-lt); }

.service-card__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.service-card--premium .service-card__subtitle { color: var(--gold); }

.service-card__desc {
  font-size: 0.9rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-card--premium .service-card__desc { color: rgba(237,232,220,0.6); }

.service-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.service-card__includes li {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--charcoal-lt);
}
.service-card--premium .service-card__includes li { color: rgba(237,232,220,0.7); }

.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--parchment-dk);
}
.service-card--premium .service-card__price { border-color: rgba(255,255,255,0.1); }

.service-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--burgundy);
}
.service-card--premium .service-card__amount { color: var(--gold); }

.service-card__amount--custom { font-size: 1.5rem; }

.service-card__note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-lt);
}
.service-card--premium .service-card__note { color: rgba(237,232,220,0.4); }

/* ── PROCESS ─────────────────────────────────── */
.process { background: var(--parchment); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--burgundy);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process__line {
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  margin: 0 auto 1rem;
  opacity: 0.4;
}

.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.process__step p {
  font-size: 0.9rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  background: var(--burgundy-dk);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='28' stroke='%23ffffff' stroke-width='0.4' opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials .container { position: relative; z-index: 1; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(237,232,220,0.1);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: background 0.3s;
}
.testimonial:hover { background: rgba(255,255,255,0.08); }

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: -0.5rem;
}

.testimonial p {
  color: rgba(237,232,220,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--parchment-lt);
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--parchment-lt);
  font-weight: 600;
}
.testimonial__author span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(237,232,220,0.5);
}

/* ── FAQ ─────────────────────────────────────── */
.faq { background: var(--parchment-lt); }

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--parchment-dk);
}

.faq__q {
  width: 100%;
  background: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--burgundy); }

.faq__icon {
  font-size: 1.4rem;
  color: var(--burgundy);
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}
.faq__q.open .faq__icon { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq__a.open {
  max-height: 200px;
  padding-bottom: 1.25rem;
}
.faq__a p {
  color: var(--charcoal-lt);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── CONTACT ─────────────────────────────────── */
.contact { background: var(--parchment); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  color: var(--charcoal-lt);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact__detail strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 0.15rem;
}
.contact__detail a,
.contact__detail span {
  color: var(--charcoal);
  font-size: 0.95rem;
}
.contact__detail a:hover { color: var(--burgundy); }

.contact__availability {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  background: var(--parchment-dk);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--burgundy);
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--parchment-dk);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

/* ── FORM ELEMENTS ────────────────────────────── */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--parchment-dk);
  border-radius: var(--radius);
  background: var(--parchment-lt);
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,35,54,0.08);
}
.form-group textarea { resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__success {
  margin-top: 1rem;
  text-align: center;
  color: var(--burgundy);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(237,232,220,0.7);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(237,232,220,0.08);
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--parchment-lt);
  opacity: 0.9;
  text-align: center;
}
.footer__logo-arrow {
  width: 170px;
  height: 8px;
  display: block;
  opacity: 0.65;
}
.footer__logo-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(237,232,220,0.65);
  letter-spacing: 0.03em;
  text-align: center;
}

.footer__links h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237,232,220,0.4);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(237,232,220,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--parchment-lt); }

.footer__bottom {
  padding: 2rem 0;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(237,232,220,0.3);
}

/* ── WHATSAPP FLOAT ───────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── MODAL ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,40,36,0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--parchment-lt);
  border-radius: 6px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal__close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  font-size: 1.1rem;
  color: var(--charcoal-lt);
  transition: color 0.2s;
}
.modal__close:hover { color: var(--burgundy); }

.modal__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
.modal__step {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--parchment-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--charcoal-lt);
  transition: all 0.3s;
}
.modal__step.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}
.modal__step.done {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.modal__step-line {
  flex: 1;
  height: 1px;
  background: var(--parchment-dk);
  max-width: 80px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.modal__sub {
  color: var(--charcoal-lt);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal__option {
  border: 2px solid var(--parchment-dk);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}
.modal__option:hover { border-color: var(--burgundy-lt); }
.modal__option.selected {
  border-color: var(--burgundy);
  background: rgba(123,35,54,0.04);
}

.modal__option-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.modal__option-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.modal__option-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
}
.modal__option p {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.modal__option ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.modal__option li {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-lt);
}

.modal__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}
.modal__divider::before, .modal__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--parchment-dk);
}
.modal__divider span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  white-space: nowrap;
}

.modal__nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.modal__nav .btn--outline { flex: 1; }
.modal__nav .btn--primary { flex: 2; }

.booking__summary {
  background: var(--white);
  border: 1px solid var(--parchment-dk);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.booking__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--parchment-dk);
}
.booking__summary-row:last-child { border: none; font-weight: 600; }
.booking__summary-row span:first-child { color: var(--charcoal-lt); }

.booking__secure {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-lt);
  padding: 0 0.25rem;
  margin-bottom: 0.5rem;
}

.modal__success {
  text-align: center;
  padding: 2rem 0;
}
.success__icon {
  font-size: 3rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.modal__success h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.modal__success p {
  color: var(--charcoal-lt);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
}
.success__note {
  font-family: var(--font-ui);
  font-size: 0.8rem !important;
  color: var(--charcoal-lt) !important;
  margin-bottom: 2rem !important;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .vastu__pillars { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about__grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero__mandala { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 300px; margin: 0 auto; }

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

  .services__grid { grid-template-columns: 1fr; }

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

  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__top { grid-template-columns: 1fr 1fr; }

  .modal { padding: 2rem 1.5rem; }
  .modal__options { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 0.85rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .vastu__pillars { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}

/* ── MODAL BACK BUTTON ───────────────────── */
.modal__back {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--charcoal-lt);
  cursor: pointer;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}
.modal__back:hover { color: var(--burgundy); }

/* Calendly widget height on mobile */
@media (max-width: 600px) {
  .calendly-inline-widget { height: 580px !important; }
}

/* ── FORM NOTE ───────────────────────── */
.form__note {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--charcoal-lt);
  margin-top: 0.75rem;
  line-height: 1.5;
}
