/* ═══════════════════════════════════════════════════════
   HALLMARK DIAGNOSTIC CENTRE — styles.css
   Premium Design System · Phase 1
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #050d1a;
  --deep:       #0a1628;
  --teal:       #0b6e6d;
  --teal-light: #0e9e9c;
  --gold:       #b8851f;
  --gold-light: #d4a843;
  --white:      #ffffff;
  --off-white:  #f4f7f9;
  --text-body:  #1e293b;
  --text-muted: #64748b;
  --border:     rgba(11,110,109,0.15);
  --shadow:     0 4px 40px rgba(5,13,26,0.12);
  --shadow-lg:  0 20px 60px rgba(5,13,26,0.20);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ──────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(5,13,26,0.98);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  border-bottom: 1px solid rgba(184,133,31,0.25);
}
.nav-brand {
  display: flex; align-items: center; gap: 13px; text-decoration: none;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  background: var(--teal);
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: white;
  box-shadow: 0 0 0 2px var(--gold);
  flex-shrink: 0;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: white; line-height: 1.2;
}
.nav-name span {
  color: var(--gold-light); font-size: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  display: block; letter-spacing: 2.5px; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: white; }
.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 9px 22px; border-radius: 7px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px; transition: all 0.2s;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.nav-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(5,13,26,0.99);
    padding: 24px 5% 36px; gap: 22px;
    border-bottom: 1px solid rgba(184,133,31,0.2);
    z-index: 100;
  }
  .nav-links.nav-open li a { font-size: 16px; }
}

/* ──────────────────────────────────────────
   HERO — FULL VIEWPORT (home)
   ────────────────────────────────────────── */
.hero-full {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 100px 5% 80px;
  background: var(--navy);
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  background-repeat: no-repeat;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5,13,26,0.94) 0%,
    rgba(5,13,26,0.78) 48%,
    rgba(5,13,26,0.38) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; max-width: 660px;
  animation: heroFade 0.9s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,133,31,0.12); border: 1px solid rgba(184,133,31,0.35);
  color: var(--gold-light); padding: 7px 20px; border-radius: 99px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-light); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.35; transform:scale(1.5); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px,5.5vw,74px);
  font-weight: 900; line-height: 1.05;
  color: white; margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--teal-light); display: block; }
.hero-sub {
  font-size: clamp(15px,1.5vw,17px); line-height: 1.85;
  color: rgba(255,255,255,0.65); margin-bottom: 44px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { border-left: 2px solid var(--teal); padding-left: 18px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: white;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing:.5px; margin-top:3px; }

/* ──────────────────────────────────────────
   HERO — INTERIOR PAGES (~50vh)
   ────────────────────────────────────────── */
.page-hero {
  min-height: 52vh;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 110px 5% 64px;
  background: var(--navy);
}
.page-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,13,26,0.96) 0%,
    rgba(5,13,26,0.60) 50%,
    rgba(5,13,26,0.30) 100%
  );
}
.page-hero-content { position: relative; z-index: 2; animation: heroFade 0.8s ease both; }
.page-hero-content .page-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal-light); font-weight: 700; margin-bottom: 14px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px,4vw,58px); font-weight: 900;
  color: white; line-height: 1.08;
}
.page-hero-content p {
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-top: 16px; max-width: 520px; line-height: 1.8;
}

/* ──────────────────────────────────────────
   PAGE HEADER — no photo (services, packages)
   ────────────────────────────────────────── */
.page-header {
  padding: 148px 5% 72px;
  background: var(--navy);
  text-align: center;
}
.page-header .page-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal-light); font-weight: 700; margin-bottom: 14px;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px,4vw,54px); font-weight: 900;
  color: white; line-height: 1.1; margin-bottom: 16px;
}
.page-header h1 span { color: var(--teal-light); }
.page-header p {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ──────────────────────────────────────────
   SECTION COMMONS
   ────────────────────────────────────────── */
section { padding: 120px 5%; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,3.5vw,46px); font-weight: 800;
  color: var(--navy); line-height: 1.12;
}
.section-title span { color: var(--teal); }
.section-intro {
  font-size: 16px; color: var(--text-muted); line-height: 1.85;
  max-width: 560px; margin-top: 16px;
}
.section-header { margin-bottom: 64px; }
.text-center { text-align: center; }
.text-center .section-intro { margin: 16px auto 0; }

/* ──────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────── */
.btn-primary {
  background: var(--teal); color: white;
  padding: 15px 34px; border-radius: 8px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--teal-light); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11,110,109,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 15px 34px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-teal-outline {
  border: 1.5px solid var(--teal); color: var(--teal);
  padding: 13px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
}
.btn-teal-outline:hover { background: var(--teal); color: white; }

/* ──────────────────────────────────────────
   HOME — WHY STRIP
   ────────────────────────────────────────── */
.why-strip { background: var(--navy); padding: 64px 5%; }
.why-strip-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: rgba(255,255,255,0.05);
  border-radius: 16px; overflow: hidden;
}
.why-item {
  padding: 40px 28px; background: rgba(5,13,26,0.8);
  text-align: center; transition: background 0.2s;
}
.why-item:hover { background: rgba(11,110,109,0.18); }
.why-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.why-item h3 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.why-item p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }

/* ──────────────────────────────────────────
   SERVICE CARD (shared — home + services page)
   ────────────────────────────────────────── */
.service-card {
  background: white; border-radius: 14px; padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 38px; margin-bottom: 18px; display: block; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* ──────────────────────────────────────────
   HOME — SERVICES PREVIEW
   ────────────────────────────────────────── */
.services-preview { background: var(--off-white); }
.services-preview-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 24px; margin-bottom: 48px;
}

/* ──────────────────────────────────────────
   HOME — CTA BANNER
   ────────────────────────────────────────── */
.cta-banner {
  background: var(--navy); text-align: center;
  padding: 110px 5%; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(11,110,109,0.15) 0%, transparent 70%);
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,3.5vw,50px); font-weight: 800;
  color: white; margin-bottom: 16px; line-height: 1.1;
}
.cta-banner p {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 520px; margin: 0 auto 44px; line-height: 1.8;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────── */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-box {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  border-radius: 16px; padding: 48px;
  display: flex; flex-direction: column; gap: 24px;
  box-shadow: var(--shadow-lg);
}
.rc-badge {
  position: absolute; top: -16px; right: 20px;
  background: var(--gold); color: white;
  padding: 8px 18px; border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase;
}
.about-feat { display: flex; gap: 16px; align-items: flex-start; }
.about-feat-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(11,110,109,0.2);
  display: grid; place-items: center; flex-shrink: 0; font-size: 22px;
}
.about-feat-text h4 { color: white; font-size: 15px; font-weight: 600; margin-bottom: 5px; }
.about-feat-text p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.65; }
.about-content .section-intro { max-width: 100%; }
.about-list { margin-top: 28px; list-style: none; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--text-body); }
.about-list li::before {
  content: '✓'; width: 26px; height: 26px;
  background: rgba(11,110,109,0.1); color: var(--teal);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

.accreditation-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 14px; padding: 44px 52px;
  display: flex; gap: 32px; align-items: center;
  margin-top: 72px;
}
.accreditation-icon { font-size: 52px; flex-shrink: 0; }
.accreditation-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.accreditation-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.about-cta { background: var(--off-white); text-align: center; }

/* ──────────────────────────────────────────
   SERVICES PAGE
   ────────────────────────────────────────── */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 28px; margin-bottom: 64px;
}
.services-cta {
  background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 56px; text-align: center;
}
.services-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.services-cta p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

/* ──────────────────────────────────────────
   PACKAGES PAGE
   ────────────────────────────────────────── */
.packages-section { background: white; }
.packages-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab-btn {
  padding: 11px 26px; border-radius: 99px;
  border: 1.5px solid var(--border); background: transparent;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.tab-btn.active, .tab-btn:hover { background: var(--teal); border-color: var(--teal); color: white; }
.pkg-panel { display: none; }
.pkg-panel.active { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 28px; }
.pkg-card {
  background: var(--off-white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.pkg-card-head {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  padding: 26px 30px;
}
.pkg-card-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: white; margin-bottom: 5px;
}
.pkg-card-head p { font-size: 11px; color: var(--teal-light); letter-spacing: 1.5px; text-transform: uppercase; }
.pkg-card-body { padding: 24px 30px; flex: 1; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pkg-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-body); line-height: 1.55;
}
.pkg-list li::before {
  content: '◆'; color: var(--teal); font-size: 7px;
  margin-top: 6px; flex-shrink: 0;
}
.pkg-card-footer {
  padding: 16px 30px; border-top: 1px solid var(--border);
  background: white; font-size: 13px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pkg-card-footer a { color: var(--teal); font-weight: 600; text-decoration: none; font-size: 13px; }
.pkg-card-footer a:hover { color: var(--teal-light); }
.packages-bottom {
  margin-top: 72px; background: var(--off-white);
  border: 1px solid var(--border); border-radius: 14px;
  padding: 56px; text-align: center;
}
.packages-bottom h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.packages-bottom p { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }
.packages-bottom-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────────
   CONTACT PAGE
   ────────────────────────────────────────── */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info .section-title { color: white; }
.contact-info .section-label { color: var(--teal-light); }
.contact-info .section-intro { color: rgba(255,255,255,0.55); max-width: 100%; }
.hours-grid { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.hours-row:hover { background: rgba(255,255,255,0.08); }
.hours-row span:first-child { font-weight: 600; color: white; font-size: 14px; }
.hours-row span:last-child { color: var(--gold-light); font-size: 14px; font-weight: 600; }
.contact-card {
  background: white; border-radius: 16px; padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.contact-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 18px; border-radius: 10px;
  background: var(--off-white); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--teal); }
.contact-item-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: rgba(11,110,109,0.1);
  display: grid; place-items: center; font-size: 20px; flex-shrink: 0;
}
.contact-item-text span {
  display: block; font-size: 10px; color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text p {
  font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none;
}
.contact-item-text a:hover { color: var(--teal); }
.map-wrap { line-height: 0; }
.map-wrap iframe {
  width: 100%; height: 420px; border: 0;
  filter: grayscale(15%) contrast(108%);
}

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
footer {
  background: #02060f; color: rgba(255,255,255,0.4);
  padding: 44px 5%; text-align: center;
  font-size: 13px; line-height: 1.9;
}
footer a { color: var(--teal-light); text-decoration: none; }
footer a:hover { color: white; }
footer strong { color: white; }
.footer-tagline { margin-top: 10px; font-size: 12px; font-style: italic; color: rgba(255,255,255,0.22); }

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

/* ──────────────────────────────────────────
   WHATSAPP FLOAT
   ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; text-decoration: none;
  filter: drop-shadow(0 6px 20px rgba(37,211,102,0.45));
  transition: filter 0.25s, transform 0.25s;
}
.wa-float:hover {
  filter: drop-shadow(0 8px 28px rgba(37,211,102,0.65));
  transform: translateY(-3px);
}
.wa-bubble {
  background: #25d366; border-radius: 50%;
  width: 62px; height: 62px;
  display: grid; place-items: center; position: relative;
}
.wa-bubble svg { width: 32px; height: 32px; fill: white; }
.wa-bubble::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: rgba(37,211,102,0.4);
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-tooltip {
  background: white; color: #128c7e;
  font-size: 13px; font-weight: 700;
  padding: 8px 14px; border-radius: 8px 0 0 8px;
  white-space: nowrap; box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  margin-right: -4px; opacity: 0; transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s; pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-strip-grid { grid-template-columns: repeat(2,1fr); }
  .accreditation-box { flex-direction: column; gap: 20px; padding: 32px 28px; }
  .about-grid { gap: 48px; }
}
@media (max-width: 600px) {
  section { padding: 80px 5%; }
  .hero-stats { gap: 28px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .why-strip-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .packages-bottom-actions { flex-direction: column; align-items: center; }
  .accreditation-box { padding: 24px 20px; }
}

/* ──────────────────────────────────────────
   TESTIMONIALS
   ────────────────────────────────────────── */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 72px; line-height: 0.6;
  color: var(--teal); font-weight: 900;
  margin-bottom: 8px;
}
.testimonial-text {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; flex: 1;
}
.testimonial-stars { color: var(--gold-light); font-size: 16px; letter-spacing: 2px; }
.testimonial-author { display: flex; flex-direction: column; gap: 3px; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.testimonial-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
}

/* ──────────────────────────────────────────
   BOOKING FORM
   ────────────────────────────────────────── */
.booking-section { background: var(--navy); padding: 100px 5%; }
.booking-section .section-label { color: var(--teal-light); }
.booking-section .section-title { color: white; }
.booking-section .section-intro { color: rgba(255,255,255,0.55); max-width: 100%; }
.booking-card {
  background: white; border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  max-width: 720px; margin: 48px auto 0;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px; font-weight: 700; color: var(--text-body);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 14px; color: var(--text-body);
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--teal); background: white; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn-whatsapp {
  background: #25d366; color: white;
  padding: 15px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1ebe5d; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 32px 24px; }
  .form-actions { flex-direction: column; }
  .form-actions .btn-primary,
  .form-actions .btn-whatsapp { justify-content: center; }
}
