/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6b7a93;
  --line: #d7dfe7;
  --brand: #188f66;
  --brand-dark: #127454;
  --brand-light: #dff2ec;
  --shadow-sm: 0 4px 12px rgba(11, 31, 55, 0.06);
  --shadow: 0 16px 36px rgba(11, 31, 55, 0.09);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: radial-gradient(circle at 78% -10%, #d6f0e5 0%, transparent 38%), var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ─── LAYOUT ─────────────────────────────────────────── */
.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #e2eaef;
  border-bottom: 1px solid #e2eaef;
}

/* ─── HEADER / NAV ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e4eaef;
}

.nav-wrap {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5f748f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.phone:hover {
  color: var(--brand);
}

.phone svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(24, 143, 102, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-dark);
  box-shadow: 0 8px 20px rgba(24, 143, 102, 0.35);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: #b5c5d4;
  box-shadow: var(--shadow);
}

.btn-block {
  width: 100%;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  margin-bottom: 12px;
}

.btn-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1eb955;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
}

/* ─── HAMBURGER ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-light);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  letter-spacing: -0.01em;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.hero-copy h1 {
  margin: 24px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5.2vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: var(--brand);
}

.hero-copy > p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 1px solid #cfd9e3;
  box-shadow: var(--shadow);
}

.availability-card {
  position: absolute;
  left: -28px;
  bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
}

.availability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.availability-card strong {
  display: block;
  margin-top: 3px;
  font-size: 20px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

/* ─── SECTION HEADING ────────────────────────────────── */
.section-head {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 12px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

/* ─── CARDS ──────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 24px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid #dde5ee;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ─── SERVICE CARDS ──────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  border-color: #b5d8cb;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  flex-shrink: 0;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand);
}

/* Legacy icon-wrap for other uses */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3,
.price-card h3,
.info-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.service-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.inline-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── ABOUT THE DOCTOR ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  border: 1px solid #cfd9e3;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  right: -20px;
  bottom: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 18px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(24, 143, 102, 0.35);
  line-height: 1.3;
}

.about-badge-years {
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-badge span:last-child {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.88;
  margin-top: 4px;
}

.about-copy h2 {
  margin: 12px 0 6px;
  font-family: "Sora", sans-serif;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-tagline {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
}

.about-copy > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-light);
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-highlight strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.about-highlight span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
}

/* ─── GALLERY ────────────────────────────────────────── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid #cfd9e3;
  box-shadow: var(--shadow-sm);
  background: #e8eef4;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 25, 45, 0.65) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.gallery-cta {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

/* ─── PRICING ────────────────────────────────────────── */
.price-card {
  padding: 32px 32px 24px;
}

.price-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid #eaeff5;
}

.price-card li:first-child {
  border-top: 0;
}

.price-card span {
  font-size: 15px;
  color: #3a4f6a;
  font-weight: 500;
}

.price-card strong {
  font-size: 15px;
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
}

.fine-print {
  margin: 28px 0 0;
  text-align: center;
  color: #8499b0;
  font-size: 14px;
  line-height: 1.55;
}

/* ─── REVIEWS ────────────────────────────────────────── */
.reviews-wrap {
  margin-bottom: 12px;
}

.review-track {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.review-lane {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.review-track:hover .review-lane {
  animation-play-state: paused;
}

.review-card {
  width: min(420px, 80vw);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  color: #1e2c42;
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  border: 1px solid #b8ddd0;
  flex-shrink: 0;
}

.avatar-initial {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.reviewer strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.reviewer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* ─── LOCATION ───────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid #d0dae4;
  box-shadow: var(--shadow);
  min-height: 480px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 480px;
}

.map-link {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #fff;
  border: 1px solid #d0dae4;
  border-radius: 10px;
  padding: 9px 14px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}

.map-link:hover {
  background: #f0f5ff;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}

.info-card {
  padding: 24px;
}

.info-card p,
.info-card p a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.info-card p a:hover {
  color: var(--brand);
}

/* ─── SOCIAL ─────────────────────────────────────────── */
.social-card {
  text-align: center;
  padding: 52px 32px;
  max-width: 800px;
  margin: 0 auto;
}

.social-card h2 {
  margin: 10px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.social-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.social-link {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 24px;
  background: #f0f7f4;
  border: 1px solid #cde0d6;
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 15px;
  transition: background var(--transition), transform var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: #e0f2ea;
  transform: translateY(-1px);
}

/* ─── BOOKINGS ADMIN TABLE ───────────────────────────── */
.bookings-admin {
  padding: 24px;
}

.bookings-admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.bookings-admin-count {
  margin: 0;
  font-weight: 700;
  color: #2c445f;
  font-size: 15px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid #dde5ee;
  border-radius: 14px;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: #fff;
}

.bookings-table th,
.bookings-table td {
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  border-bottom: 1px solid #eaeff6;
  vertical-align: top;
}

.bookings-table th {
  color: #364f6b;
  background: #f7fafc;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bookings-table td {
  color: #2f4460;
  line-height: 1.55;
}

.bookings-table tbody tr:last-child td {
  border-bottom: 0;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #136040;
  background: #d9f2e7;
  letter-spacing: 0.01em;
}

.empty-table {
  color: #7890a8;
  text-align: center !important;
  padding: 32px !important;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  padding: 22px 0;
  border-top: 1px solid #d6dfe9;
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-wrap p {
  margin: 0;
  color: #7a8ea8;
  font-size: 14px;
}

.text-link {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}

.text-link:hover {
  color: var(--brand-dark);
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 32px 16px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(700px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #d5dde7;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(8, 24, 50, 0.18);
  z-index: 1;
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  border: 0;
  background: #f2f5f8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  color: #4a607a;
  transition: background var(--transition), color var(--transition);
}

.modal-close:hover {
  background: #e4eaf1;
  color: var(--text);
}

#bookingFormView h3,
.booking-success h3 {
  margin: 0 0 4px;
  font-family: "Sora", sans-serif;
  font-size: 26px;
  letter-spacing: -0.03em;
}

#bookingFormView > p {
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

/* ─── BOOKING FORM ───────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

#bookingForm label,
.label-full {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3a4f65;
  letter-spacing: 0.01em;
}

.label-full {
  margin-top: 4px;
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  border: 1.5px solid #cad4de;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(24, 143, 102, 0.15);
}

#bookingForm textarea {
  resize: vertical;
  min-height: 88px;
}

#bookingForm .btn-block {
  margin-top: 16px;
}

.form-msg {
  min-height: 20px;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.5;
}

.form-msg.error {
  color: #c0392b;
}

/* ─── BOOKING SUCCESS STATE ──────────────────────────── */
.booking-success {
  text-align: center;
  padding: 12px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-size: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  font-weight: 700;
  border: 3px solid #a8dfc8;
}

.booking-success h3 {
  font-size: 24px !important;
  margin: 0 !important;
}

.booking-success > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

.success-id {
  font-weight: 700;
  color: var(--brand-dark) !important;
  font-size: 17px !important;
  background: var(--brand-light);
  padding: 8px 20px;
  border-radius: 999px;
  margin: 4px 0 12px !important;
}

.booking-success .btn-whatsapp {
  margin-top: 4px;
}

.booking-success .btn-ghost {
  width: 100%;
  margin-top: 0;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .three-col,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-badge {
    right: 0;
  }

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

  .hero-media {
    max-width: 680px;
    margin: 0 auto;
  }

  .availability-card {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }

  .location-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e0e7ee;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    box-shadow: 0 8px 20px rgba(10, 25, 50, 0.08);
  }

  .main-nav.open {
    max-height: 300px;
    padding: 12px 20px 18px;
    gap: 4px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .section {
    padding: 68px 0;
  }

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

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

  .gallery-item img {
    height: 300px;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .section-head h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

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

  .service-card {
    padding: 20px;
  }

  .price-card,
  .review-card,
  .info-card {
    padding: 22px;
  }

  .location-cards {
    grid-template-columns: 1fr;
  }

  .social-card {
    padding: 32px 22px;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }

  .bookings-admin-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }

  .modal-panel {
    padding: 24px 20px;
    border-radius: 20px;
  }
}
