/* ══════════════════════════════════════════════
   BLOOM INTELLIGENCE — styles.css
   Upscale organic revision
   ══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  --bg:          #101610;
  --bg-alt:      #141e12;
  --card:        #192316;
  --card-hover:  #1f2c1b;
  --border:      rgba(106, 172, 69, 0.14);
  --green-dark:  #3a6c26;
  --green:       #6aac45;
  --green-light: #96cc6e;
  --gold:        #c4a24a;
  --text:        #e6edd8;
  --text-muted:  #7a9268;
  --text-dim:    #4a6040;
  --radius:      16px;
  --radius-lg:   28px;
  --transition:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 6px 40px rgba(0,0,0,0.45);
  --glow:        0 0 40px rgba(106, 172, 69, 0.14);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-lg { padding: 16px 38px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #0a140a;
  box-shadow: 0 4px 24px rgba(106, 172, 69, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(106, 172, 69, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(230, 237, 216, 0.2);
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green-light);
  transform: translateY(-2px);
}

/* ─── Section Shared ─── */
.section { padding: 110px 0; }
.section-alt { background: var(--bg-alt); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-label { margin-inline: auto; }
.section-header .section-sub { margin-inline: auto; }

/* ─── Gradient Text ─── */
.hero-headline .gradient-text {
  display: block;
  font-size: 0.5em;
  white-space: nowrap;
  width: fit-content;
  margin: 0.2em auto 0;
}
.gradient-text {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 45%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 5s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ─── Scroll Reveal ─── */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-delay { transition-delay: 0.18s; }
.reveal.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(16, 22, 16, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
}
.nav-inner {
  width: min(1200px, 92%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.nav-logo-img { height: 36px; width: auto; flex-shrink: 0; object-fit: contain; }
.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.01em;
}
.nav-logo-accent {
  color: var(--green);
}
.nav-links { display: flex; gap: 38px; }
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--green-light); }
.nav-cta { padding: 10px 24px; font-size: 0.88rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 130px 5% 160px;
}

/* ─── Hero Canvas ─── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ─── Organic Orbs ─── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 780px; height: 780px;
  top: -20%; left: -12%;
  background: radial-gradient(circle, rgba(58, 108, 38, 0.22) 0%, transparent 68%);
  filter: blur(100px);
  animation: orbDrift1 24s ease-in-out infinite;
}
.orb-2 {
  width: 600px; height: 600px;
  bottom: -15%; right: -8%;
  background: radial-gradient(circle, rgba(106, 172, 69, 0.16) 0%, transparent 68%);
  filter: blur(90px);
  animation: orbDrift2 30s ease-in-out infinite;
}
.orb-3 {
  width: 460px; height: 460px;
  top: 30%; left: 45%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(196, 162, 74, 0.09) 0%, transparent 70%);
  filter: blur(80px);
  animation: orbDrift3 20s ease-in-out infinite;
}
.orb-4 {
  width: 320px; height: 320px;
  top: 5%; right: 12%;
  background: radial-gradient(circle, rgba(150, 204, 110, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  animation: orbDrift4 16s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -45px) scale(1.07); }
  66%       { transform: translate(-30px, 55px) scale(0.96); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-70px, 40px) scale(1.09); }
  70%       { transform: translate(35px, -50px) scale(0.94); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%       { transform: translateX(-50%) translateY(-60px) scale(1.12); }
}
@keyframes orbDrift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-40px, 30px) scale(1.1); }
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 840px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(106, 172, 69, 0.1);
  border: 1px solid rgba(106, 172, 69, 0.28);
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 48px;
  line-height: 1.8;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--green), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; height: 42px; }
  50%       { opacity: 1;    height: 56px; }
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.about-body {
  color: var(--text-muted);
  font-size: 1.04rem;
  margin-bottom: 18px;
  line-height: 1.8;
  text-wrap: pretty;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover {
  border-color: rgba(106, 172, 69, 0.28);
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.stat-card:hover::after { opacity: 1; }
.stat-value {
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
  padding-right: 24px;
  line-height: 1;
}
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--green-light);
}
.stat-label {
  flex: 1;
  border-left: 1px solid var(--border);
  padding-left: 24px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0;
}

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at top left, rgba(106, 172, 69, 0.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(106, 172, 69, 0.28);
  box-shadow: var(--glow), var(--shadow-card);
  background: var(--card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(106, 172, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  transition: var(--transition);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon {
  background: rgba(106, 172, 69, 0.18);
  box-shadow: 0 0 24px rgba(106, 172, 69, 0.2);
}
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 22px;
  line-height: 1.75;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-features li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ══════════════════════════════
   PROCESS
══════════════════════════════ */
.process-timeline {
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin-inline: auto;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}
.step-number {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(106, 172, 69, 0.07);
  border: 1.5px solid rgba(106, 172, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green-light);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-number {
  background: rgba(106, 172, 69, 0.15);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(106, 172, 69, 0.22);
}
.step-connector {
  position: absolute;
  left: 28px;
  top: 58px;
  width: 1.5px;
  height: calc(100% + 1px);
  background: linear-gradient(to bottom, rgba(106, 172, 69, 0.28), rgba(106, 172, 69, 0.04));
  z-index: 0;
}
.step-content { padding-bottom: 52px; flex: 1; }
.process-step:last-child .step-content { padding-bottom: 0; }
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  padding-top: 14px;
}
.step-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ══════════════════════════════
   WHY US
══════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 34px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(106, 172, 69, 0.28);
  box-shadow: var(--glow);
}
.why-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(106, 172, 69, 0.09);
  border: 1px solid rgba(106, 172, 69, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--green);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: rgba(106, 172, 69, 0.16);
  box-shadow: 0 0 28px rgba(106, 172, 69, 0.18);
}
.why-icon svg { width: 36px; height: 36px; }
.why-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.why-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106, 172, 69, 0.1) 0%, transparent 68%);
  pointer-events: none;
  animation: ctaPulse 7s ease-in-out infinite;
}
.cta-glow::after {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 74, 0.06) 0%, transparent 70%);
  animation: ctaPulse 7s ease-in-out infinite reverse;
}
@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.7; }
  50%       { transform: translate(-50%, -50%) scale(1.18); opacity: 1;   }
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 900;
  max-width: 720px;
  margin: 0 auto 22px;
  line-height: 1.2;
}
.cta-sub {
  color: var(--text-muted);
  font-size: 1.06rem;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #0b100b;
  border-top: 1px solid var(--border);
  padding: 60px 0 34px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { height: 40px; width: auto; flex-shrink: 0; object-fit: contain; }
.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--text);
}
.footer-tagline {
  color: var(--text-dim);
  font-size: 0.88rem;
  max-width: 230px;
  line-height: 1.5;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icon:hover {
  background: rgba(106, 172, 69, 0.12);
  border-color: var(--green);
  color: var(--green-light);
  transform: translateY(-2px);
}
.footer-nav { display: flex; flex-direction: column; gap: 13px; }
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  color: var(--text-dim);
  font-size: 0.82rem;
  text-align: center;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(16, 22, 16, 0.97);
    backdrop-filter: blur(24px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.5rem; color: var(--text); font-family: 'Playfair Display', serif; }
  .nav-toggle { z-index: 100; }
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 80px 0; }
  .stat-value { min-width: 70px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; }
}

/* ══════════════════════════════
   BOOKING MODAL
══════════════════════════════ */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 14, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.booking-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: var(--card);
  border: 1px solid rgba(106, 172, 69, 0.22);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 90px rgba(0,0,0,0.65), var(--glow);
  transform: translateY(22px);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              max-width 0.4s cubic-bezier(0.4,0,0.2,1),
              border-radius 0.4s cubic-bezier(0.4,0,0.2,1);
}
.booking-overlay.active .booking-modal {
  transform: translateY(0);
}
.booking-modal.step2-active {
  max-width: 860px;
}

/* ─── Close Button ─── */
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(16, 22, 16, 0.85);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(106, 172, 69, 0.12);
  border-color: var(--green);
  color: var(--green-light);
}
.modal-close svg { width: 16px; height: 16px; }

/* ─── Modal Steps ─── */
.modal-step { animation: stepFadeIn 0.32s ease; }
.modal-step--hidden { display: none; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Step 1 ─── */
.modal-step-inner {
  padding: 52px 48px;
}

/* ─── Step 2 ─── */
.modal-step2-header {
  padding: 28px 36px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.modal-step2-info { flex: 1; }

/* ─── Back Button ─── */
.modal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  padding-top: 6px;
  white-space: nowrap;
  transition: color var(--transition);
}
.modal-back:hover { color: var(--green-light); }

/* ─── Modal Typography ─── */
.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-sub {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ─── Form ─── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-group input {
  background: rgba(255,255,255,0.035);
  border: 1.5px solid rgba(106, 172, 69, 0.18);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(106, 172, 69, 0.13);
}
.btn-full { width: 100%; justify-content: center; margin-top: 6px; }

/* ─── Calendly Container ─── */
.calendly-container {
  width: 100%;
  height: 700px;
  min-height: 700px;
}
.calendly-container iframe {
  border: none !important;
  width: 100% !important;
  height: 100% !important;
}

/* Step 2 modal needs to scroll, not clip */
.booking-modal.step2-active {
  overflow-y: auto;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .modal-step-inner { padding: 40px 24px; }
  .modal-step2-header { padding: 22px 24px 0; flex-direction: column; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .calendly-container { height: 620px; min-height: 620px; }
}
