/* =========================
   DESIGN TOKENS
   ========================= */
:root {
  /* Brand */
  --brown-light: #a98a72;
  --brown: #7a5a43;
  --brown-dark: #4a3427;
  --brown-header: #8d715b; /* slightly lighter and warmer than --brown-dark */

  --sky-light: #cfe2e9;
  --sky: #9ec9d7;
  --sky-dark: #5c9fb4;

  /* Neutrals */
  --bg: #f9f7f4;
  --surface: #ffffff;
  --text: #2a2523;
  --muted: #6b625c;
  --line: #e5ded8;

  /* Spacing */
  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 18px;
  --space-lg: 24px;
  --space-xl: 30px;
  --space-2xl: 36px;
  --space-3xl: 48px;
  --space-4xl: 56px;

  /* Shadows */
  --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 14px 36px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 20px 42px rgba(0, 0, 0, 0.09);

  /* Radius & Layout */
  --radius-btn: 6px;
  --maxw: 1100px;
}

/* =========================
   BASE
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}
a {
  text-decoration: none;
  color: inherit;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
}
h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
}
p,
li {
  line-height: 1.55;
}

/* =========================
   HEADER
   ========================= */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--brown) 0%, var(--sky) 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: var(--space-sm) var(--space-md);
}
.nav {
  width: min(100%, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.16);
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.company-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
}
.subtext {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-btn);
  font-weight: 550;
  color: white;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.2s ease;
}
.cta-btn:active {
  transform: translateY(1px);
}
.cta-btn.call {
  background: var(--brown-header);
}
.cta-btn.call:hover {
  background: var(--brown);
}
.cta-btn.book {
  background: rgba(255, 255, 255, 0.22);
}
.cta-btn.book:hover {
  background: rgba(255, 255, 255, 0.32);
}

@media (max-width: 700px) {
  .cta-group {
    display: none;
  }
  .logo {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
  .company-name {
    font-size: 16px;
  }
  header {
    padding: var(--space-sm) var(--space-xs);
  }
  .nav {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }
  .brand {
    justify-content: center;
  }
  .brand-text {
    align-items: center;
  }
}

/* =========================
   HERO / BEFORE-AFTER
   ========================= */
.hero-wrap {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
}
.ba-slider,
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider {
  pointer-events: none;
}

.ba-slider img,
#ba-handle {
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-xl) var(--space-sm);
  pointer-events: none;
  z-index: 60;
}
.hero-card {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  width: min(640px, 92%);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.hero-card h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.hero-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: var(--space-sm);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}
.hero-btn {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-btn);
  font-weight: 600;
}
.hero-btn.primary {
  background: var(--brown-dark);
  color: #fff;
}
.hero-btn.primary:hover {
  background: var(--brown);
}
.hero-btn.ghost {
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}
.hero-btn.ghost:hover {
  background: var(--brown-dark);
  color: #fff;
}

@media (max-width: 700px) {
  .hero-wrap {
    height: 70vh;
    min-height: 420px;
  }
  .hero-card h1 {
    font-size: 18px;
  }
  .hero-card p {
    font-size: 14px;
  }
}

.hero-overlay {
  pointer-events: none;
}

.hero-overlay .hero-card,
.hero-overlay .hero-btn {
  pointer-events: auto;
}

.hero-actions a {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.hero-actions {
  position: relative;
  z-index: 99999;
  pointer-events: auto;
}

.hero-btn {
  position: relative;
  z-index: 99999;
  pointer-events: auto;
}

.hero-overlay {
  pointer-events: none !important;
}

.hero-overlay * {
  pointer-events: auto !important;
}

/* =========================
   SHARED SECTION WRAPPERS
   ========================= */
.services,
.plans,
.why,
.reviews,
.faq {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-sm);
}
.why,
.reviews,
.faq {
  padding-top: var(--space-4xl);
}

.services h2,
.plans h2,
.why h2,
.reviews h2,
.faq h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
}
.services h2,
.plans h2 {
  text-align: center;
}

/* =========================
   SERVICES
   ========================= */
.services h2 {
  margin-bottom: var(--space-md);
}
.services-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}
.service-card {
  background: var(--surface);
  border-radius: 12px;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.service-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: var(--space-xs);
}
.service-info p,
.service-info .time {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: var(--space-xs);
  opacity: 0.9;
}
.service-price {
  font-weight: 800;
  font-size: 17px;
  color: var(--brown-dark);
  white-space: nowrap;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   PLANS
   ========================= */
.plans {
  text-align: center;
}
.plans h2 {
  margin-bottom: var(--space-xs);
}
.plans-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: var(--space-2xl);
}
.plans-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.plan-card {
  background: var(--surface);
  border-radius: 14px;
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  transition: box-shadow 0.18s ease;
}
.plan-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.plan-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
}
.plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--brown-dark);
}
.plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.plan-card ul {
  list-style: none;
  padding: 0;
}
.plan-card ul li {
  font-size: 14px;
  color: var(--muted);
  margin: var(--space-xs) 0;
}
.plan-btn {
  margin-top: auto;
  padding: var(--space-sm) var(--space-md);
  background: var(--brown-dark);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: background 0.2s ease;
}
.plan-btn:hover {
  background: var(--brown);
}

.plan-card.featured {
  border: 2px solid var(--brown-dark);
  transform: translateY(-4px);
}
.plan-card.featured .badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-dark);
  color: #fff;
  font-size: 12px;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 6px;
}

@media (min-width: 750px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   WHY
   ========================= */
.why h2 {
  margin-bottom: var(--space-xl);
  text-align: center;
}
.why-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}
.why-item {
  background: var(--surface);
  border-radius: 14px;
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.why-icon {
  font-size: 28px;
  margin-bottom: var(--space-xs);
}
.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--brown-dark);
}
.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 750px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* WHY Layout (added for left-right design) */
.why-layout {
  display: flex;
  gap: 40px;
  margin-top: var(--space-xl);
  align-items: center;
}

.why-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.why-right {
  flex: 0 0 65%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#why-preview {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transition: opacity 0.5s ease, transform 0.6s ease;
}

/* =========================
   REVIEWS
   ========================= */
.reviews {
  margin: var(--space-4xl) auto;
  padding-top: 0;
  text-align: left;
}
.reviews h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: var(--space-xs);
}
.reviews-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: var(--space-lg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.review-card {
  background: var(--surface);
  border-radius: 14px;
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.review-top {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
}
.review-stars {
  font-size: 14px;
  color: #f4b500;
}
.review-text {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

/* =========================
   FAQ
   ========================= */
.faq {
  margin: var(--space-4xl) auto;
}
.faq h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: var(--space-md);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: var(--space-sm) 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  background: none;
  border: none;
  padding: var(--space-sm) 0;
  color: var(--text);
  cursor: pointer;
}
.faq-answer {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  display: none;
  padding: var(--space-xs) 0 var(--space-sm);
}
.faq-item.open .faq-answer {
  display: block;
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  margin-top: var(--space-4xl);
  background: linear-gradient(90deg, var(--brown) 0%, var(--sky) 100%);
  color: #fff;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}
.footer-inner {
  width: min(100%, var(--maxw));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}
.footer-name {
  font-weight: 700;
  font-size: 17px;
}
.footer-tag {
  font-size: 14px;
  opacity: 0.9;
}
.footer-contact {
  font-size: 15px;
  line-height: 1.4;
}
.footer-phone {
  font-weight: 600;
}
.footer-loc {
  opacity: 0.9;
  margin-top: var(--space-xs);
}
.footer-copy {
  font-size: 13px;
  opacity: 0.85;
}

.footer-inner .made-by {
  margin-top: 2px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
}
/* a subtle underline on hover (keeps look subtle on the colored footer) */
.footer-inner .made-by a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-inner .made-by a:hover,
.footer-inner .made-by a:focus {
  opacity: 0.95;
  outline: none;
}

@media (min-width: 800px) {
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
    gap: var(--space-lg);
  }
  .footer-brand {
    justify-content: flex-start;
  }
  .footer-contact {
    text-align: right;
  }
  .footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: var(--space-md);
  }
}

/* =========================
   FLOATING ACTION BUTTONS
   ========================= */
.floating-actions {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-call,
.floating-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0);
}
.floating-call {
  background: var(--brown-dark);
}
.floating-call:hover {
  background: var(--brown);
  transform: translateY(-2px);
}
.floating-whatsapp {
  background: #25d366;
}
.floating-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}
.wa-icon {
  width: 34px;
  height: 34px;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 211, 102, 0);
  }
  45% {
    transform: scale(1.06);
    box-shadow: 0 0 14px rgba(37, 211, 102, 0.38);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 700px) {
  .floating-call,
  .floating-whatsapp {
    display: flex;
  }
  .floating-whatsapp {
    animation: wa-pulse 2.8s ease-in-out infinite;
  }
}

/* =========================
   SHARED FORM / BUTTON UTILS
   ========================= */
.form-step {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.btn-next,
.btn-back,
.btn-submit {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-btn);
  font-weight: 600;
}

/* =========================
   BOOKING (kept visuals, cleaner track)
   ========================= */
.booking {
  width: min(100%, var(--maxw));
  margin: var(--space-4xl) auto;
  padding: var(--space-2xl) var(--space-sm) 0;

  text-align: center;
  border-radius: 20px; /* as before */
}
.booking h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: var(--space-xs);
}
.booking-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: var(--space-lg);
}

.booking-card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 0;
  overflow: hidden;
}

.booking-head {
  display: flex;
  justify-content: flex-end;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--line);
}
.step-indicator {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

/* Viewport + Track (no fixed 300% width; each step is 100%) */
.steps-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.steps-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: auto;
  transform: translateX(0%);
  transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.form-step {
  flex: 0 0 100%;
  width: 100%;
  padding: var(--space-xl) var(--space-lg); /* all steps same */
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (max-width: 500px) {
  .form-step {
    padding: var(--space-lg);
  }
}

/* Step 1 mini tiles */
.mini-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .mini-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mini-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 200ms ease;
  display: inline-block;
  text-align: left;
}
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.06));
}
.mini-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

/* Fields (Steps 2 & 3) */
.field {
  text-align: left;
}
.label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder {
  color: var(--muted);
}
.field input:focus {
  border-color: var(--sky-dark);
  box-shadow: 0 0 0 4px rgba(92, 159, 180, 0.12);
}

/* Actions */
.actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-sm);
}
.btn {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-btn);
  font-weight: 700;
  background: var(--brown-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.btn:hover {
  background: var(--brown);
}
.btn:active {
  transform: translateY(1px);
}
.btn.ghost {
  background: transparent;
  color: var(--brown-dark);
  border: 2px solid var(--brown-dark);
}
.btn.ghost:hover {
  background: var(--brown-dark);
  color: #fff;
}

#step2.form-step,
#step3.form-step {
  padding: var(--space-xl) var(--space-lg);
}
.location-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.loc-btn {
  position: absolute;
  right: 10px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--brown-dark);
  transition: transform 0.2s ease;
}
.loc-btn:hover {
  transform: scale(1.2);
}

input[type="datetime-local"] {
  padding: 11px 14px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  width: 100%;
}
input[type="datetime-local"]:focus {
  border-color: var(--sky-dark);
  box-shadow: 0 0 0 4px rgba(92, 159, 180, 0.14);
}

/* =========================
   UNIFIED CARD DEPTH (unchanged visuals)
   ========================= */
.service-card,
.plan-card,
.why-item,
.review-card,
.booking {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}
.service-card:hover,
.plan-card:hover,
.why-item:hover,
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.09);
}

.steps-viewport {
  transition: height 0.4s ease;
}

/* Inline error messages */
.error-msg {
  color: #d43b3b;
  font-size: 13px;
  margin-top: 4px;
  display: block;
  opacity: 0;
  transition: opacity 0.25s ease;
  min-height: 18px; /* reserve space even when hidden */
}

.field.invalid input {
  border-color: #d43b3b;
  box-shadow: 0 0 0 2px rgba(212, 59, 59, 0.2);
}

.field.invalid .error-msg {
  opacity: 1;
}
input#bkPhone {
  font-family: "Inter", sans-serif;
}

@media (max-width: 750px) {
  /* Stack vertically */
  .why-layout {
    flex-direction: column;
    gap: var(--space-lg);
  }

  /* Image comes right after the title */
  .why-right {
    order: 1;
    width: 100%;
    flex: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Then the cards */
  .why-left {
    order: 2;
    width: 100%;
    flex: unset;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  #why-preview {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
