/* ==========================================================================
   Vedhik Healthcare — style.css
   Design system replicated from supplied design document
   ========================================================================== */

:root {
  --navy: #1b1b52;
  --navy-deep: #10103d;
  --navy-ink: #14143f;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #115e59;
  --mint: #5eead4;
  --mint-soft: #99f6e4;
  --mint-pale: #ccfbf1;
  --bg-light: #f4f7fb;
  --bg-soft: #eef2f8;
  --white: #ffffff;
  --text-body: #4b5563;
  --text-muted: #6b7280;
  --border: #e5e9f0;
  --shadow-sm: 0 2px 8px rgba(16, 24, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 24, 64, 0.09);
  --shadow-lg: 0 18px 50px rgba(16, 24, 64, 0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --grad-cta: linear-gradient(110deg, #23887e 0%, #34b3a5 42%, #7ff2e4 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.22;
  font-weight: 700;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* keep anchored sections clear of the sticky header */
section[id], .svc-tile[id] { scroll-margin-top: 92px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { box-shadow: 0 10px 26px rgba(27, 27, 82, 0.35); }

.btn-teal {
  background: linear-gradient(100deg, #2dd4bf, #5eead4);
  color: var(--navy-deep);
  font-weight: 600;
}
.btn-teal:hover { box-shadow: 0 10px 26px rgba(45, 212, 191, 0.45); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(3px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.16); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25); }

.btn-glass {
  background: rgba(255, 255, 255, 0.32);
  color: var(--white);
  font-weight: 600;
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.45); }

/* ---------- Eyebrow / badge ---------- */
.badge-pill {
  display: inline-block;
  background: var(--mint-soft);
  color: var(--teal-deep);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

.eyebrow {
  font-family: var(--font-head);
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 15.5px;
  font-weight: 500;
  color: #374151;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--teal);
  transition: width 0.28s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }
.main-nav a.active { color: var(--navy); font-weight: 600; }
.main-nav a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 11px 24px; font-size: 14.5px; border-radius: 9px; }

/* Booking link inside the nav — only used by the mobile dropdown */
.main-nav a.nav-book { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.6px;
  border-radius: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ==========================================================================
   Home — hero
   ========================================================================== */
.hero-home {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-home.jpg") center 30% / cover no-repeat;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(6, 6, 26, 0.78) 0%, rgba(6, 6, 26, 0.45) 48%, rgba(6, 6, 26, 0.12) 100%);
}
.hero-home .container {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.hero-content { max-width: 620px; }
.hero-content .badge-pill {
  animation: fadeUp 0.7s ease both;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 58px);
  font-weight: 700;
  margin: 22px 0 24px;
  animation: fadeUp 0.7s 0.12s ease both;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 38px;
  animation: fadeUp 0.7s 0.22s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Home — personalized intro
   ========================================================================== */
.section { padding: 92px 0; }
.section-soft { background: var(--bg-light); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.intro-grid h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 22px;
}
.intro-grid .lead { margin-bottom: 0; }

.intro-media { position: relative; }
.intro-media > img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.float-card {
  position: absolute;
  left: -46px;
  bottom: 34px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
}
.float-card .ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2dd4bf;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.float-card b {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 15.5px;
  font-weight: 600;
}
.float-card small { color: var(--text-muted); font-size: 13px; }

/* ==========================================================================
   Home — trust cards
   ========================================================================== */
.section-head-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-head-center h2 {
  font-size: clamp(26px, 3vw, 34px);
}
.section-head-center .rule {
  width: 84px;
  height: 5px;
  border-radius: 4px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--mint));
}
.section-head-center .sub {
  margin-top: 14px;
  color: var(--text-muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #c9ece6;
}
.icon-tile {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 18px;
}
.trust-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.trust-card p { font-size: 14px; color: var(--text-muted); }

/* ==========================================================================
   Home — services preview
   ========================================================================== */
.split-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.split-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  max-width: 560px;
}
.split-head .sub { margin-top: 10px; color: var(--text-muted); }
.link-arrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, color 0.2s;
  white-space: nowrap;
}
.link-arrow:hover { gap: 13px; color: var(--teal-deep); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-card .thumb {
  height: 185px;
  overflow: hidden;
}
.svc-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .thumb img { transform: scale(1.06); }
.svc-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 9px;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}
.svc-card .link-arrow { margin-top: 16px; font-size: 14px; }

/* ==========================================================================
   Home — committed band
   ========================================================================== */
.band-dark {
  background: radial-gradient(1100px 500px at 85% -10%, #262668 0%, var(--navy-ink) 55%) , var(--navy-ink);
  color: #cbd2e1;
  padding: 96px 0;
}
.band-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 66px;
  align-items: center;
}
.band-grid h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 24px;
}
.band-grid .lead { margin-bottom: 30px; color: #b9c1d4; }
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}
.check-list svg { color: var(--mint); flex-shrink: 0; }
.band-grid img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   Home — testimonials
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 38px 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testi-card .quote-mark {
  position: absolute;
  top: 26px;
  right: 32px;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: #a7dcd4;
}
.testi-card blockquote {
  font-style: italic;
  color: #374151;
  font-size: 16.5px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}
.avatar.a1 { background: #8be3d3; color: var(--navy-deep); }
.avatar.a2 { background: #5eead4; color: var(--navy-deep); }
.testi-author b {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 15.5px;
}
.testi-author small { color: var(--text-muted); font-size: 13px; }

/* ==========================================================================
   CTA gradient card
   ========================================================================== */
.cta-wrap { padding: 20px 0 100px; }
.cta-card {
  background: var(--grad-cta);
  border-radius: 26px;
  padding: 84px 40px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(30, 140, 128, 0.35);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  top: -220px; left: -140px;
}
.cta-card::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: -200px; right: -120px;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 18px;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 17px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-note {
  margin-top: 26px !important;
  font-size: 14.5px !important;
  margin-bottom: 0 !important;
}
.cta-note a {
  text-decoration: underline;
  font-weight: 600;
  color: var(--white);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: #aab1c8;
  padding: 74px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr;
  gap: 60px;
  padding-bottom: 56px;
}
.footer-brand .logo img { height: 48px; }
.footer-brand p {
  margin: 22px 0 26px;
  font-size: 15px;
  max-width: 340px;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #dfe4f2;
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.social-row a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
}

.site-footer h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 13px; }
.footer-links a {
  font-size: 15px;
  transition: color 0.2s, padding-left 0.25s;
}
.footer-links a:hover { color: var(--mint); padding-left: 5px; }

.footer-reach p { font-size: 15px; margin-bottom: 22px; }
.helpline-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.helpline-card .t {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
}
.helpline-card .n {
  font-family: var(--font-head);
  color: #4fe3cf;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: 1px;
  line-height: 1.25;
}
.helpline-card .n:hover { color: var(--mint); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 13.5px;
  color: #8f97b3;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.legal-links a { color: inherit; }
.legal-links a:hover { color: var(--mint); }
.legal-links a + a { margin-left: 18px; }

/* ==========================================================================
   Services page
   ========================================================================== */
.hero-services {
  background:
    radial-gradient(560px 340px at 12% 18%, rgba(94, 234, 212, 0.14), transparent 65%),
    radial-gradient(640px 400px at 88% 82%, rgba(94, 234, 212, 0.10), transparent 65%),
    radial-gradient(900px 560px at 50% -20%, #26266b, transparent 75%),
    var(--navy-ink);
  text-align: center;
  padding: 104px 0 112px;
}
.hero-services h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 52px);
  margin: 26px 0 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-services p {
  color: #a9b2cc;
  max-width: 620px;
  margin: 0 auto;
  font-size: 17.5px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-services .badge-pill { animation: fadeUp 0.7s ease both; }

/* ==========================================================================
   404 page
   ========================================================================== */
.hero-error .err-code {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1;
  font-size: clamp(88px, 16vw, 168px);
  letter-spacing: -2px;
  margin: 22px 0 4px;
  background: linear-gradient(96deg, #44c3d8 0%, #9ace7f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeUp 0.7s 0.05s ease both;
}
.hero-error h1 { margin-top: 6px; }
.hero-error .hero-actions {
  justify-content: center;
  margin-top: 34px;
}

/* helpful-link cards are anchors on this page */
a.trust-card { display: block; text-decoration: none; }
a.trust-card h3 { color: var(--navy); }
a.trust-card:hover h3 { color: var(--teal); }

.err-help {
  margin-top: 40px;
  text-align: center;
  font-size: 15.5px;
  color: var(--text-muted);
}
.err-help a {
  color: var(--teal);
  font-weight: 600;
  white-space: nowrap;
}
.err-help a:hover { text-decoration: underline; }

.svc-all-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.svc-tile:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.svc-tile .icon-tile {
  background: #e4f7f3;
  border-color: #d2f0ea;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.svc-tile h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}
.svc-tile p {
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
}
.svc-tile .link-arrow { margin-top: 18px; font-size: 14px; }

/* Advantage */
.adv-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}
.adv-media { position: relative; }
.adv-media::before {
  content: "";
  position: absolute;
  inset: -28px auto auto -28px;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  background: radial-gradient(closest-side, rgba(94, 234, 212, 0.35), transparent);
  filter: blur(6px);
}
.adv-media img {
  position: relative;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.adv-copy h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 34px;
}
.adv-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}
.adv-item .icon-tile {
  background: #e4f7f3;
  border-color: #d2f0ea;
  color: var(--teal-dark);
  margin: 0;
  flex-shrink: 0;
}
.adv-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.adv-item p { font-size: 15px; }
.adv-badges {
  display: flex;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.adv-badge {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
}
.adv-badge svg { color: var(--teal); flex-shrink: 0; }

/* ==========================================================================
   About page
   ========================================================================== */
.hero-about { padding: 84px 0 0; overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: end;
}
.about-copy { padding-bottom: 76px; }
.about-copy h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  margin-bottom: 26px;
}
.about-copy h1 .accent { color: var(--teal-dark); display: block; }
.about-copy p { max-width: 540px; margin-bottom: 34px; }
.about-media {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-media::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: #dff4fb;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.about-media img {
  position: relative;
  width: min(520px, 100%);
  z-index: 1;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mv-card .icon-tile { margin-bottom: 24px; }
.mv-card.mission .icon-tile { background: var(--navy); border-color: var(--navy); color: var(--white); }
.mv-card.vision .icon-tile { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.mv-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.mv-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.mv-card p { font-size: 15.5px; }
.mv-card .watermark {
  position: absolute;
  right: 26px;
  top: 30px;
  opacity: 0.07;
  width: 96px;
  height: 96px;
  color: var(--navy);
}

/* Values */
.values-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 52px;
}
.values-head h2 { font-size: clamp(30px, 3.8vw, 44px); }
.values-head p { max-width: 380px; font-size: 15.5px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.value-item .head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.value-item .icon-tile { margin: 0; width: 46px; height: 46px; }
.value-item:nth-child(odd) .icon-tile { background: var(--navy); border-color: var(--navy); color: var(--white); }
.value-item:nth-child(even) .icon-tile { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.value-item h3 { font-size: 19px; font-weight: 600; }
.value-item p { font-size: 14.5px; color: var(--text-muted); }

/* About CTA band */
.cta-navy {
  background:
    radial-gradient(700px 420px at 15% 100%, #2a2a6e, transparent 70%),
    radial-gradient(700px 420px at 88% 0%, #26266b, transparent 70%),
    var(--navy-ink);
  text-align: center;
  padding: 96px 0;
}
.cta-navy h2 {
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 18px;
}
.cta-navy p {
  color: #a9b2cc;
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 17px;
}
.btn-outline-round {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  border-radius: 999px;
  background: transparent;
}
.btn-outline-round:hover { background: rgba(255, 255, 255, 0.1); }
.btn-white.round { border-radius: 999px; }

/* ==========================================================================
   WhatsApp booking form
   ========================================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.booking-info h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 18px;
}
.booking-info > p { margin-bottom: 30px; }
.booking-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.booking-point .icon-tile {
  width: 46px;
  height: 46px;
  background: #e4f7f3;
  border-color: #d2f0ea;
  color: var(--teal-dark);
  margin: 0;
  flex-shrink: 0;
}
.booking-point b {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 16px;
}
.booking-point small { color: var(--text-muted); font-size: 14px; }

.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 42px 42px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, #25d366, #5eead4);
}
.booking-card h3 {
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.booking-card h3 .wa-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e7f9ee;
  display: grid;
  place-items: center;
  color: #25d366;
  flex-shrink: 0;
}
.booking-card .form-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.area-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #e4f7f3;
  border: 1px solid #c5ebe3;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
  font-size: 13.5px;
  color: var(--teal-deep);
  line-height: 1.5;
}
.area-note svg { flex-shrink: 0; margin-top: 1px; }
.area-note b { color: var(--teal-deep); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field label .req { color: #e11d48; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: #1f2937;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field textarea { resize: vertical; min-height: 92px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.14);
}
.form-field input.invalid,
.form-field textarea.invalid,
.form-field select.invalid {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
/* Multi-service checkbox chips */
.svc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.svc-checks.invalid-group .check-chip { border-color: #fda4af; }
.form-field label.check-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-family: var(--font-body);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.check-chip:hover { border-color: #b6e5dd; }
.check-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-chip .box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid #cbd5e1;
  background: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s;
}
.check-chip .box svg {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s, transform 0.18s;
  color: #fff;
}
.check-chip .txt {
  font-size: 13.5px;
  font-weight: 500;
  color: #374151;
  line-height: 1.3;
}
.check-chip input:checked ~ .box {
  background: var(--teal);
  border-color: var(--teal);
}
.check-chip input:checked ~ .box svg {
  opacity: 1;
  transform: scale(1);
}
.check-chip input:checked ~ .txt { color: var(--teal-deep); font-weight: 600; }
.check-chip:has(input:checked) {
  background: #e4f7f3;
  border-color: var(--teal);
}
.check-chip input:focus-visible ~ .box {
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.25);
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 16.5px;
  border: none;
  gap: 12px;
}
.btn-whatsapp:hover { background: #1fbd5a; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4); }
.booking-privacy {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
}
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 14px;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
}
.form-error-msg.show { display: block; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-content h1, .hero-content p, .hero-actions, .hero-content .badge-pill,
  .hero-services h1, .hero-services p, .hero-services .badge-pill { animation: none; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-method {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.contact-method:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: #c9ece6;
}
.contact-method .icon-tile {
  background: #e4f7f3;
  border-color: #d2f0ea;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.contact-method.wa .icon-tile {
  background: #e7f9ee;
  border-color: #cdf0da;
  color: #25d366;
}
.contact-method h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-method > p {
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
}
.contact-value {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--teal-dark);
  word-break: break-word;
}
.contact-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
address.contact-value {
  font-style: normal;
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.contact-info h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 18px;
}
.contact-info > p { margin-bottom: 30px; }
.inline-link {
  color: var(--teal-dark);
  font-weight: 600;
  text-decoration: underline;
}
.inline-link:hover { color: var(--teal-deep); }

/* FAQ */
.faq-list {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] { border-color: #c9ece6; box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy);
  border-radius: var(--radius);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.faq-item .chev {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e4f7f3;
  flex-shrink: 0;
  transition: transform 0.28s ease, background 0.28s ease;
}
.faq-item .chev::before,
.faq-item .chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-dark);
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease;
}
.faq-item .chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .chev { background: var(--teal); transform: rotate(180deg); }
.faq-item[open] .chev::before,
.faq-item[open] .chev::after { background: var(--white); }
.faq-item[open] .chev::after { opacity: 0; }
.faq-item p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ==========================================================================
   Careers page
   ========================================================================== */
.trust-grid-4 { grid-template-columns: repeat(4, 1fr); }

.role-block { margin-top: 22px; }
.role-label {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.role-list { list-style: none; }
.role-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 14.5px;
  line-height: 1.55;
}
.role-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.28);
}
.role-apply { margin-top: 28px; }

.apply-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.apply-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 18px;
}
.apply-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 9px; }
.apply-step p { font-size: 14.5px; color: var(--text-muted); }

.apply-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 46px 32px;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.apply-card .icon-tile {
  background: #e4f7f3;
  border-color: #d2f0ea;
  color: var(--teal-dark);
  margin: 0 auto 20px;
}
.apply-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.apply-email {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 26px);
  color: var(--teal-dark);
  word-break: break-word;
  margin-bottom: 14px;
}
.apply-email:hover { color: var(--teal-deep); text-decoration: underline; }
.apply-card > p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 28px; }
.apply-card b { color: var(--navy); }
.apply-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.apply-actions .btn-whatsapp.apply-wa { width: auto; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .contact-methods { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .svc-grid, .svc-all-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 68px 0; }
  .intro-grid, .band-grid, .adv-grid, .about-grid, .mv-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 48px; }
  .about-copy { padding-bottom: 20px; }
  .about-media { min-height: 380px; }
  .about-media::before { width: 360px; height: 360px; }
  .float-card { left: 14px; }
  .testi-grid { grid-template-columns: 1fr; }
  .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .apply-steps { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 5%;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--bg-soft); }
  .main-nav a::after { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  /* Booking CTA is hidden above, so surface it inside the dropdown instead */
  .main-nav a.nav-book {
    display: block;
    margin-top: 12px;
    padding: 13px 4px;
    border-bottom: none;
    border-radius: 9px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    text-align: center;
  }
  .main-nav a.nav-book:hover { color: var(--white); }
}

@media (max-width: 620px) {
  .trust-grid, .svc-grid, .svc-all-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-home { min-height: 560px; }
  .intro-media > img { height: 420px; }
  .band-grid img { height: 300px; }
  .adv-media img { height: 360px; }
  .cta-card { padding: 60px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-card { padding: 30px 22px 32px; }
  .svc-checks { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
  .trust-grid-4 { grid-template-columns: 1fr; }
  .mv-card { padding: 30px 24px; }
  .apply-card { padding: 34px 20px; }
  .apply-actions .btn { width: 100%; }
  .apply-actions .btn-whatsapp.apply-wa { width: 100%; }
  .logo img { height: 36px; }
  .footer-brand .logo img { height: 42px; }
  .faq-item summary { font-size: 15.5px; padding: 17px 18px; }
  .faq-item p { padding: 0 18px 18px; }
}
