@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

:root {
  --navy: #053b5c;
  --blue: #3675bc;
  --teal: #14b8a6;
  --sky: #eaf7fb;
  --white: #ffffff;
  --grey: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #f3f8fb;
  --surface-green: #effdf7;
  --text: #1f2937;
  --muted: #5b6777;
  --green: #22c55e;
  --border: #d9e8ef;
  --shadow: 0 18px 46px rgba(5, 59, 92, 0.14);
  --shadow-sm: 0 4px 14px rgba(5, 59, 92, 0.09);
  --shadow-lg: 0 28px 64px rgba(5, 59, 92, 0.22);
  --radius: 10px;
  --radius-lg: 16px;
  --container: min(1160px, calc(100% - 36px));
  --font-body: "Inter", Aptos, "Segoe UI", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", Aptos, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  margin: 0;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

/* Page transition */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

#app > * {
  animation: pageEnter 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1.5px solid rgba(54, 117, 188, 0.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 2px 24px rgba(5, 59, 92, 0.07);
}

.top-strip {
  background: #f5f8fb;
  border-bottom: 1px solid rgba(54, 117, 188, 0.12);
}

.top-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  width: var(--container);
  margin: 0 auto;
  padding: 8px 0;
  font-size: 12.5px;
  color: #4a5568;
}

.top-strip-tagline {
  flex: 1;
  font-weight: 600;
  color: var(--navy);
}

.top-strip-inner span,
.top-strip-inner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border-left: 1px solid rgba(54, 117, 188, 0.15);
  white-space: nowrap;
  color: #4a5568;
  text-decoration: none;
  transition: color 0.18s;
}

.top-strip-inner .top-strip-tagline {
  padding: 0;
  border-left: none;
}

.top-strip-inner a:hover { color: var(--blue); }

.top-strip .icon {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex-shrink: 0;
}

.nav-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 270px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 3px 14px rgba(54, 117, 188, 0.22);
  transition: box-shadow 0.2s, transform 0.2s;
}

.brand:hover .brand-mark {
  box-shadow: 0 5px 20px rgba(54, 117, 188, 0.34);
  transform: scale(1.04);
}

.brand-mark img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand-sep {
  display: block;
  flex: 0 0 auto;
  width: 1.5px;
  height: 36px;
  margin: 0 14px;
  background: linear-gradient(to bottom, transparent, var(--blue) 25%, var(--blue) 75%, transparent);
  opacity: 0.22;
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 7px;
  line-height: 1;
}

.brand-line1 {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.brand-lab { color: var(--teal); }

.brand-line2 {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.brand-rule {
  display: block;
  flex: 1;
  max-width: 28px;
  min-width: 4px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding-left: 22px;
  border-left: 1.5px solid var(--border);
}

.mobile-panel {
  display: contents;
}

.nav-links > a,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 10px 7px;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav-links > a:hover,
.nav-dropdown > a:hover {
  color: var(--blue);
  background: transparent;
  border-bottom-color: rgba(54, 117, 188, 0.35);
}

.nav-links > a.active,
.nav-dropdown > a.active {
  color: var(--navy);
  background: rgba(20, 184, 166, 0.06);
  box-shadow: none;
  border-bottom-color: var(--teal);
  border-radius: 6px 6px 0 0;
  font-weight: 900;
}

.nav-links .icon {
  width: 16px;
  height: 16px;
}

.nav-dropdown {
  position: relative;
}

/* ── Mega menu ──────────────────────────────────────────────── */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 680px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(5, 59, 92, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 300;
}

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

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 12px;
  color: var(--navy);
  transition: background 0.15s;
  text-decoration: none;
}

.mega-item:hover {
  background: var(--sky);
}

.mega-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--mc, var(--blue)) 13%, white);
  color: var(--mc, var(--blue));
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}

.mega-item:hover .mega-icon {
  background: color-mix(in srgb, var(--mc, var(--blue)) 22%, white);
  transform: scale(1.07);
}

.mega-icon .icon { width: 20px; height: 20px; }

.mega-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mega-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.25;
}

.mega-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.mega-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
}

.mega-footer .btn { font-size: 13px; padding: 9px 20px; gap: 7px; }
.mega-footer .btn .icon { width: 14px; height: 14px; }

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border);
}

.btn,
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(5, 59, 92, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.icon-btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 16px 34px rgba(5, 59, 92, 0.2);
}

.btn:focus-visible,
.icon-btn:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.28);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(54, 117, 188, 0.28);
}

.btn-secondary {
  color: var(--navy);
  background: #e4f5ee;
  border-color: #a8eacb;
  box-shadow: 0 12px 26px rgba(20, 184, 166, 0.18);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(54, 117, 188, 0.28);
}

.btn-book {
  color: var(--white);
  background: linear-gradient(135deg, #053b5c 0%, #0a5275 100%);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(5, 59, 92, 0.32), inset 0 1px 0 rgba(255,255,255,0.1);
  letter-spacing: 0.01em;
}

.btn-book:hover {
  background: linear-gradient(135deg, #032a43 0%, #073d5e 100%);
  filter: none;
  box-shadow: 0 8px 24px rgba(5, 59, 92, 0.42);
}

.header-phone-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blue) !important;
  color: var(--blue) !important;
  background: transparent;
  box-shadow: none;
  flex-shrink: 0;
}

.header-phone-btn:hover {
  background: rgba(54, 117, 188, 0.07);
  transform: translateY(-1px);
  filter: none;
  box-shadow: none;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;

}

.btn-hero-call {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn-hero-wa {
  color: #fff;
  background: #1ea952;
  border-color: #1ea952;
  box-shadow: 0 8px 20px rgba(30, 169, 82, 0.32);
}

.btn-hero-wa:hover {
  background: #179944;
  border-color: #179944;
}

.btn-whatsapp {
  color: #063724;
  background: #e4f5ee;
  border-color: #a8eacb;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.2);
}

.btn-call {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(5, 59, 92, 0.28);
}

.icon-btn {
  width: 42px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(5, 59, 92, 0.1);
}

.icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
}

@media (max-width: 1320px) and (min-width: 1081px) {
  .brand {
    min-width: 220px;
  }

  .brand-mark { width: 58px; height: 58px; }
  .brand-mark img { width: 56px; height: 56px; }
  .brand-sep { height: 38px; margin: 0 13px; }
  .brand-line1 { font-size: 17px; }
  .brand-line2 { font-size: 9.5px; }
  .brand-rule  { width: 16px; }

  .nav-links {
    gap: 2px;
    font-size: 13px;
  }

  .nav-links > a,
  .nav-dropdown > a {
    gap: 5px;
    padding: 8px 7px;
  }

  .nav-links > a > .icon:first-child,
  .nav-dropdown > a > .icon:first-child {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .header-actions .btn {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slideshow,
.page-hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.9s ease, transform 5.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
}

.hero-slide img,
.page-hero .hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,14,30,0.96) 0%, rgba(4,28,54,0.84) 40%, rgba(5,59,92,0.42) 68%, transparent 100%),
    linear-gradient(180deg, rgba(2,14,30,0.18) 0%, transparent 35%, transparent 60%, rgba(2,10,22,0.72) 100%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0 48px;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-teal {
  color: #4de8d0;
  display: block;
}

.hero p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
}

.hero p strong { color: var(--white); }

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-slide-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-slide-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.hero-slide-dot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-slide-dot.active {
  width: 24px;
  border-radius: 3px;
  background: rgba(77, 232, 208, 0.9);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1 1 auto;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(77, 232, 208, 0.5);
  border-radius: var(--radius);
  background: rgba(3, 22, 46, 0.55);
  backdrop-filter: blur(12px);
  font-weight: 600;
  font-size: 11.5px;
  white-space: nowrap;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.trust-row .icon {
  width: 17px;
  height: 17px;
  color: #4de8d0;
  flex-shrink: 0;
}

.quick-access {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 36px));
  margin: 36px auto 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.qa-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 20px rgba(5, 59, 92, 0.07);
  color: var(--navy);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.qa-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  background: var(--qa-accent, var(--blue));
  transition: opacity 0.28s ease;
}

.qa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(5, 59, 92, 0.24);
  border-color: transparent;
  background: var(--qa-accent, var(--blue));
  color: var(--white);
}

.qa-card:hover::before {
  opacity: 0;
}

/* Unique accent per card */
.qa-card[data-qi="0"] { --qa-accent: #3675bc; }
.qa-card[data-qi="1"] { --qa-accent: #0d9488; }
.qa-card[data-qi="2"] { --qa-accent: #0369a1; }
.qa-card[data-qi="3"] { --qa-accent: #0891b2; }

/* Icon wrapper */
.qa-icon-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--qa-accent, var(--blue)) 14%, white);
  color: var(--qa-accent, var(--blue));
  margin-bottom: 18px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.qa-icon-wrap .icon {
  width: 26px;
  height: 26px;
}

.qa-card:hover .qa-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: scale(1.08);
}

/* Label */
.qa-label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--navy);
  transition: color 0.28s ease;
}

.qa-card:hover .qa-label { color: var(--white); }

/* Short description */
.qa-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.28s ease;
}

.qa-card:hover .qa-desc { color: rgba(255, 255, 255, 0.82); }

/* Arrow pill at bottom right */
.qa-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--qa-accent, var(--blue)) 12%, white);
  color: var(--qa-accent, var(--blue));
  margin-top: 16px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.qa-arrow .icon { width: 14px; height: 14px; }

.qa-card:hover .qa-arrow {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateX(3px);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
}

.section-title {
  max-width: 770px;
  margin-bottom: 36px;
}

.section-title h2,
.split-copy h2,
.approach-copy h2,
.cta-section h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-title p,
.split-copy p,
.approach-copy p,
.cta-section p,
.page-hero p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.service-grid,
.impact-grid,
.testimonial-grid,
.quality-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.testimonial-grid article,
.quality-grid article,
.contact-cards article,
.booking-form,
.contact-panel,
.legal-copy,
.prose-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(5, 59, 92, 0.07);
}

.service-card {
  position: relative;
  padding: 0;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  border-top: 3px solid var(--sc, var(--blue)) !important;
}

.service-card:hover,
.impact-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #fff;
  background: var(--sc, var(--blue));
  flex-shrink: 0;
}

.service-icon .icon {
  width: 24px;
  height: 24px;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.service-card-arrow {
  display: grid !important;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  border-radius: 50%;
  color: var(--sc, var(--blue)) !important;
  background: color-mix(in srgb, var(--sc, var(--blue)) 10%, white);
  border: 1px solid color-mix(in srgb, var(--sc, var(--blue)) 20%, white);
  flex-shrink: 0;
}

.service-card h3,
.impact-card h3,
.benefit-list h3,
.quality-grid h2,
.contact-cards h2,
.booking-form h2,
.detail-main h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.impact-card p,
.quality-grid p,
.contact-cards p,
.detail-main p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.service-card li .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
  margin-top: 3px;
}

.service-card > .service-card-inner > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--sc, var(--blue));
  font-weight: 800;
  font-size: 14px;
}

.blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.split-section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.split-copy p {
  font-size: 18px;
}

.split-copy .btn {
  margin-top: 18px;
}

.soft-band {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1160px) / 2));
  padding-right: max(18px, calc((100% - 1160px) / 2));
  background: var(--grey);
}

.why-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-soft);
}

.why-section .section-title {
  max-width: 880px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  position: relative;
  min-height: 285px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid #cfe3eb;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(5, 59, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--blue);
  opacity: 0.92;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 22px 48px rgba(5, 59, 92, 0.15);
}

.why-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(5, 59, 92, 0.1);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.why-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--sky);
  border: 1px solid #c8dfe8;
  box-shadow: 0 12px 26px rgba(54, 117, 188, 0.14);
}

.why-icon .icon {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.16;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.benefit-list,
.approach-cards,
.team-grid,
.check-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.benefit-list article,
.approach-cards article,
.team-grid span,
.check-grid span,
.partner-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.benefit-list article {
  display: block;
}

.benefit-list .icon {
  margin-bottom: 14px;
  color: var(--teal);
}

.approach-section {
  width: 100%;
  padding: 90px max(18px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  color: var(--white);
  background: var(--navy);
}

.approach-copy h2,
.approach-copy p {
  color: var(--white);
}

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

.approach-cards article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.impact-card,
/* ── Full blog articles (posts with body content) ────────── */
.blog-articles {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.blog-article {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.blog-article:nth-child(even) {
  grid-template-columns: 1fr 360px;
}

.blog-article:nth-child(even) .blog-article-media {
  order: 2;
}

.blog-article:nth-child(even) .blog-article-body {
  order: 1;
}

.blog-article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-article-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.blog-article-body h2 {
  font-size: 28px;
  margin: 10px 0 16px;
}

.blog-article-lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-article-body p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.blog-article-body .btn {
  margin-top: 8px;
}

.disclaimer {
  font-size: 12px !important;
  color: var(--muted) !important;
  background: var(--sky);
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.5 !important;
  margin-bottom: 16px !important;
}

/* ── Blog cards (short tips) ──────────────────────────────── */
.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: 0.2s ease;
}

.impact-card img,
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.impact-card div,
.blog-card div {
  padding: 22px;
}

.quality-strip,
.cta-section,
.quote-band,
.map-placeholder {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  border-radius: var(--radius);
}

.quality-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  background: var(--sky);
}

.quality-strip .section-title {
  margin: 0;
}

.partner-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-grid.large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-badge {
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 74px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #0d9488 100%);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testimonial-card {
  padding: 28px 30px 24px;
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-top-color 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(5, 59, 92, 0.12);
  border-top-color: var(--teal);
}

.testimonial-card p {
  margin: 0;
  flex: 1;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-card footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.testimonial-attr::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 86px;
  padding: 86px 5%;
  color: var(--white);
  background: linear-gradient(135deg, #032d47 0%, #064f78 50%, #0369a1 100%);
  box-shadow: 0 20px 60px rgba(5, 59, 92, 0.3);
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 164, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cta-badge .icon { width: 14px; height: 14px; opacity: 0.85; }

.cta-text {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-section .cta-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin-top: 20px;
}

.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 59, 92, 0.88), rgba(5, 59, 92, 0.36));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0 54px;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
  max-width: 820px;
}

.section-label,
.about-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero {
  width: var(--container);
  margin: 0 auto;
  padding: 52px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.about-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.about-hero-copy p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.about-hero-media {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sky);
  box-shadow: var(--shadow-lg);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 59, 92, 0.72));
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(5, 59, 92, 0.72);
  backdrop-filter: blur(12px);
}

.about-hero-card strong,
.about-hero-card span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-hero-card strong {
  font-size: 17px;
}

.about-hero-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.about-intro-copy h2,
.about-commitment h2,
.about-compliance h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: 0;
}

.about-intro-copy p,
.about-commitment p,
.about-compliance p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-story-stats {
  display: grid;
  gap: 14px;
}

.about-story-stats article {
  padding: 22px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--grey);
}

.about-story-stats h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 24px;
}

.about-story-stats p {
  margin: 0;
  color: var(--muted);
}

.ceo-message {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 86px;
}

.ceo-message-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-lg);
}

.ceo-message-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.director-photo-wrap {
  margin-bottom: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.director-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.ceo-message-intro .section-label {
  color: #9beacb;
}

.ceo-message-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.ceo-message-intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.ceo-message-body {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.ceo-message-body p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.72;
}

.ceo-message-body p:last-child {
  margin-bottom: 0;
}

.ceo-signature {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ceo-signature strong,
.ceo-signature span {
  display: block;
}

.ceo-signature strong {
  color: var(--white);
  font-size: 20px;
}

.ceo-signature span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
}

/* Program Director message — image on right, text on left */
.pd-message { margin-top: -28px; }
.pd-message-panel { grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr); }
.pd-message-intro { text-align: left; }

/* ── Leadership preview section ──────────────────────────── */
.leadership-preview { background: var(--grey); }

.leadership-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.leader-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
}

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

.leader-card-photo {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sky);
}

.leader-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.leader-card-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
}

.leader-card-body h3 {
  font-size: 19px;
  color: var(--navy);
  margin: 0;
}

.leader-card-body p {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.leader-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.leader-card-cta .icon {
  width: 14px;
  height: 14px;
  transition: transform 0.18s;
}

.leader-card:hover .leader-card-cta .icon {
  transform: translateX(4px);
}

/* ── Leadership standalone page ──────────────────────────── */
.leadership-page { background: var(--grey); }

.leadership-page-inner {
  width: var(--container);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.18s;
}

.back-link:hover { color: var(--navy); }

.back-link .icon {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

.leadership-page .ceo-message-intro h1 {
  font-size: 32px;
}

.about-mission-band {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-mission-band article {
  min-height: 280px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-mission-band article:nth-child(2) {
  background: var(--blue);
}

.about-mission-band span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
}

.about-mission-band h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.about-mission-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(5, 59, 92, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-value-item:hover {
  box-shadow: 0 10px 28px rgba(5, 59, 92, 0.12);
  transform: translateY(-2px);
}

.about-value-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--sky);
  color: var(--blue);
}

.about-value-item h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.about-value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.about-philosophy {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-philosophy > div {
  padding: 42px;
}

.about-philosophy .section-label {
  color: #7de7da;
}

.about-philosophy blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.03;
  font-weight: 700;
}

.about-philosophy p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.about-philosophy img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-commitment {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.about-commitment-grid,
.about-compliance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-commitment-grid span,
.about-compliance-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(5, 59, 92, 0.06);
}

.about-commitment-grid .icon,
.about-compliance-list .icon {
  color: var(--navy);
}

.about-team {
  padding-top: 86px;
  padding-bottom: 86px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-team-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
}

.about-team-grid .icon {
  color: var(--navy);
}

.about-compliance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.breadcrumbs {
  width: var(--container);
  margin: 18px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue);
  font-weight: 800;
}

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

.prose-grid article,
.legal-copy {
  padding: 28px;
}

.prose-grid h2,
.legal-copy h2,
.contact-panel h2 {
  margin-top: 0;
  color: var(--navy);
}

.quote-band {
  padding: 42px;
  color: var(--white);
  background: var(--navy);
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.06;
  font-weight: 700;
}

.quote-band p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-overview {
  display: grid;
  gap: 22px;
}

.service-catalogue .section-title {
  max-width: 880px;
}

.service-path-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: -10px 0 30px;
}

.service-path-strip a {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 9px;
  min-height: 112px;
  padding: 14px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  line-height: 1.25;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-path-strip a:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow: 0 16px 34px rgba(5, 59, 92, 0.12);
}

.service-path-strip .icon {
  width: 30px;
  height: 30px;
  color: var(--navy);
}

.service-overview-card {
  display: grid;
  grid-template-columns: 0.46fr 0.54fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(5, 59, 92, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(5, 59, 92, 0.14);
}

.service-overview img {
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  object-fit: cover;
}

.service-overview h2,
.blog-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.15;
}

.service-overview h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(25px, 3vw, 34px);
}

.service-overview-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--sky);
  flex: 0 0 auto;
}

.service-index {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 900;
  font-size: 13px;
}

.service-overview-card h3 {
  margin: 18px 0 4px;
  color: var(--navy);
  font-size: 15px;
  text-transform: uppercase;
}

.service-overview-card ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.service-overview-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
}

.service-overview-card li .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--teal);
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

.detail-main,
.contact-panel {
  padding: 28px;
}

.contact-panel {
  align-self: start;
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
}

.contact-panel p {
  margin-top: 0;
}

.contact-panel .btn {
  width: 100%;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.quality-grid article {
  padding: 28px;
}

.quality-grid .icon {
  color: var(--navy);
  margin-bottom: 12px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 14px;
}

/* Every 7th + 1st item spans 2 rows for masonry feel */
.gallery-item:nth-child(7n+1),
.gallery-item:nth-child(7n+5) {
  grid-row: span 2;
}

.gallery-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--navy);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(5, 59, 92, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 12px 40px rgba(5, 59, 92, 0.28);
  transform: translateY(-3px);
}

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

.gallery-item:hover img {
  transform: scale(1.09);
  filter: brightness(0.88);
}

/* Caption - slides up on hover */
.gallery-item > span:not(.gallery-zoom) {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-align: left;
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.gallery-item:hover > span:not(.gallery-zoom) {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: rgba(5, 22, 34, 0.86);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox p {
  color: var(--white);
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}

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

.blog-card span {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

/* .disclaimer is defined near blog-article section above */

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-cards article {
  padding: 24px;
}

.contact-cards a {
  display: block;
  color: var(--blue);
  font-weight: 800;
}

.contact-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { font-weight: 700; color: var(--navy); }
.hours-row span:last-child  { color: var(--muted); }

.booking-form {
  padding: 28px;
}

.form-intro {
  margin: -8px 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.booking-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text);
  background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 3px solid rgba(20, 184, 166, 0.18);
  border-color: var(--teal);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--text) !important;
  font-weight: 600 !important;
}

.consent input {
  width: 18px;
  margin-top: 5px;
}

.form-status {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 800;
}

.map-placeholder {
  min-height: 260px;
  margin-bottom: 86px;
  display: grid;
  place-items: center;
  padding: 34px;
  color: var(--navy);
  background: var(--sky);
  border: 1px solid var(--border);
  text-align: center;
}

.map-placeholder h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 3vw, 38px);
}

.map-placeholder p {
  max-width: 680px;
  margin: 10px auto 0;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, #042f4a 0%, #031e30 100%);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--blue) 60%, var(--teal) 100%);
  border-radius: 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  align-items: center;
  gap: 34px;
  transform: translateY(-42px);
  margin-bottom: 6px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-lg);
}

.footer-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.footer-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  font-size: 17px;
}

.footer-cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 59, 92, 0.16);
}

.site-footer .footer-cta-actions .btn {
  display: inline-flex;
  width: 100%;
  min-height: 50px;
  margin: 0;
  font-size: 15px;
}

.site-footer .footer-cta-actions .btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
}

.site-footer .footer-cta-actions .btn-call {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.24);
}

.site-footer .footer-cta-actions .btn-whatsapp {
  color: #073d2a;
  background: #e4f5ee;
  border-color: #a8eacb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 1fr 1.1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-width: 0;
  margin-bottom: 6px;
}

.footer-brand .brand-mark {
  width: 68px;
  height: 68px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.footer-brand .brand-mark img {
  width: 66px;
  height: 66px;
}

.footer-brand .brand-sep { display: none; }

.footer-brand .brand-name {
  flex: 1;
  min-width: 0;
  gap: 7px;
}

.footer-brand .brand-line1 {
  color: var(--white);
  font-size: 19px;
}

.footer-brand .brand-line2 {
  color: #7dd3f8;
  font-size: 10.5px;
}

.footer-brand .brand-lab { color: var(--teal); }

.footer-brand .brand-rule {
  background: #7dd3f8;
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
  max-width: 280px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-brand {
  display: flex;
}

.footer-col-brand > p {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
  max-width: 280px;
}

/* Column headings — light label style, not bold */
.footer-heading {
  margin: 0 0 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Plain navigation links — no icons */
.footer-link {
  display: block;
  padding: 5px 0;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.18s, padding-left 0.18s;
}

.footer-link:hover {
  color: var(--white);
  padding-left: 6px;
}

/* Contact items — keep icons */
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact .icon {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--teal);
}

a.footer-contact:hover { color: var(--white); }

/* Trust row — simple inline items */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  padding: 4px 10px;
}

.footer-trust .icon {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

/* Bottom bar — copyright | social | legal */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.12);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-copy {
  flex: 1;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  flex: 1;
  text-align: right;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer .footer-legal a {
  display: inline;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  transition: color 0.18s;
}

.site-footer .footer-legal a:hover { color: var(--white); }

.footer-social-icons {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.site-footer .footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}

.site-footer .footer-social-icons a:hover {
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

/* Per-action tint */
.site-footer .footer-social-icons a[href^="tel"]          { background: rgba(52,211,153,0.14); border-color: rgba(52,211,153,0.4); color: rgb(110,231,183); }
.site-footer .footer-social-icons a[href^="tel"]:hover    { background: rgba(52,211,153,0.28); color: #fff; }
.site-footer .footer-social-icons a[href^="mailto"]       { background: rgba(96,165,250,0.14); border-color: rgba(96,165,250,0.4); color: rgb(147,197,253); }
.site-footer .footer-social-icons a[href^="mailto"]:hover { background: rgba(96,165,250,0.28); color: #fff; }
.site-footer .footer-social-icons a[href*="wa.me"]        { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.4); color: rgb(74,222,128); }
.site-footer .footer-social-icons a[href*="wa.me"]:hover  { background: rgba(37,211,102,0.28); color: #fff; }

/* Icon: block + fixed size kills inline-svg baseline shift */
.site-footer .footer-social-icons .icon-solid {
  display: block;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}

.site-footer .footer-social-icons .fsi-label { line-height: 1; }

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.back-to-top {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: #22c55e;
  box-shadow: 0 16px 34px rgba(5, 59, 92, 0.24);
}

.floating-actions a:first-child {
  color: var(--white);
}

.floating-actions a:last-child {
  color: var(--white);
  background: var(--blue);
}

.back-to-top {
  background: var(--navy);
}

.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 0.2s ease;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top .icon {
  transform: rotate(-90deg);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: min(460px, calc(100vw - 40px));
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(5, 59, 92, 0.16), 0 2px 8px rgba(0,0,0,0.06);
}

.cookie-banner > div:first-child {
  flex: 1;
  min-width: 0;
}

.cookie-banner h2 {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.cookie-banner > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-banner > div:last-child .btn {
  padding: 9px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.offline-page {
  width: min(760px, calc(100% - 36px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
}

/* ── Slide-in navigation drawer (mobile) ────────────────────── */

/* Drawer always rendered in DOM but hidden by default */
.nav-drawer {
  display: none;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  /* Hide desktop nav and top strip at mobile */
  .top-strip { display: none; }
  .nav-links,
  .header-actions { display: none !important; }

  /* ── Drawer container ── */
  .nav-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 500;
    pointer-events: none;
  }

  .nav-drawer:not([aria-hidden="true"]) {
    pointer-events: auto;
  }

  /* ── Dark backdrop ── */
  .nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 18, 28, 0.7);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .nav-drawer:not([aria-hidden="true"]) .nav-drawer-backdrop {
    opacity: 1;
  }

  /* ── Side panel ── */
  .nav-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: linear-gradient(170deg, #021e2f 0%, #032a43 55%, #053b5c 100%);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.45);
  }

  .nav-drawer:not([aria-hidden="true"]) .nav-drawer-panel {
    transform: translateX(0);
  }

  /* ── Top bar ── */
  .nav-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
  }

  .nav-drawer-brand .brand-line1,
  .nav-drawer-brand .brand-line2 { color: #fff; }
  .nav-drawer-brand .brand-lab { color: var(--teal); }
  .nav-drawer-brand .brand-rule { background: rgba(255,255,255,0.6); }

  .nav-drawer-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.18s;
  }

  .nav-drawer-close:hover { background: rgba(255, 255, 255, 0.14); }
  .nav-drawer-close .icon { width: 18px; height: 18px; }

  /* ── Nav links ── */
  .nav-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 18px 14px 10px;
    flex: 1;
  }

  .nav-drawer-link {
    display: block;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.18s, color 0.18s;
  }

  .nav-drawer-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .nav-drawer-link.active {
    color: #4de8d0;
    background: rgba(20, 184, 166, 0.1);
  }

  /* ── Services accordion ── */
  .nav-drawer-group {
    display: flex;
    flex-direction: column;
  }

  .nav-drawer-group-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.18s, color 0.18s;
    width: 100%;
  }

  .nav-drawer-group-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  .nav-drawer-group-btn .icon {
    width: 16px;
    height: 16px;
    transition: transform 0.22s ease;
    flex-shrink: 0;
  }

  .nav-drawer-group-btn[aria-expanded="true"] .icon {
    transform: rotate(180deg);
  }

  .nav-drawer-group-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin: 4px 0 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
  }

  .nav-drawer-group-list[hidden] { display: none; }

  .nav-drawer-sub {
    display: block;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: background 0.15s, color 0.15s;
  }

  .nav-drawer-sub:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
  }

  /* ── Meta info ── */
  .nav-drawer-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-drawer-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.42);
  }

  .nav-drawer-meta .icon {
    width: 14px;
    height: 14px;
    color: var(--teal);
    opacity: 0.7;
    flex-shrink: 0;
  }

  /* ── CTA buttons ── */
  .nav-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px max(env(safe-area-inset-bottom), 28px);
    flex-shrink: 0;
  }

  .nav-drawer-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 13px;
  }

  .nav-drawer-cta .btn-primary {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
  }

  .btn-drawer-wa {
    background: #1da851;
    border: none;
    color: #fff;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: filter 0.18s;
  }

  .btn-drawer-wa:hover { filter: brightness(1.1); }

  .btn-drawer-call {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s;
  }

  .btn-drawer-call:hover { background: rgba(255, 255, 255, 0.12); }


  .trust-row,
  .quick-access,
  .service-grid,
  .service-path-strip,
  .why-grid,
  .impact-grid,
  .testimonial-grid,
  .quality-grid,
  .gallery-grid,
  .blog-grid,
  .partner-grid,
  .partner-grid.large,
  .partner-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-list,
  .team-grid,
  .about-values-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro-inner,
  .about-mv-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-intro-copy { position: static; }

  .about-quote-inner {
    grid-template-columns: 1fr;
  }

  .about-quote-content {
    padding: 44px 32px;
  }

  .about-quote-image { display: none; }

  .split-section,
  .approach-section,
  .quality-strip,
  .footer-cta,
  .about-hero,
  .about-story,
  .ceo-message-panel,
  .about-mission-band,
  .about-philosophy,
  .about-commitment,
  .about-compliance,
  .service-overview article,
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 32px;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 420px;
  }

  .about-philosophy img {
    min-height: 320px;
  }

  .ceo-message-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-line2 {
    font-size: 10px;
  }

  .hero {
    min-height: 680px;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3, 22, 46, 0.94) 0%, rgba(5, 35, 66, 0.82) 60%, rgba(5, 59, 92, 0.70) 100%);
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 56px 18px 48px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: 38px;
  }

  .trust-row,
  .quick-access,
  .service-grid,
  .service-path-strip,
  .why-grid,
  .impact-grid,
  .testimonial-grid,
  .quality-grid,
  .gallery-grid,
  .blog-grid,
  .partner-grid,
  .partner-grid.large,
  .partner-cards,
  .benefit-list,
  .approach-cards,
  .team-grid,
  .about-values-grid,
  .about-team-grid,
  .about-commitment-grid,
  .about-compliance-list,
  .about-intro-inner,
  .about-mv-inner,
  .check-grid,
  .prose-grid,
  .form-row,
  .leadership-preview-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .quick-access {
    margin-top: 16px;
  }

  .section,
  .split-section {
    padding: 62px 0;
  }

  .approach-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .about-hero {
    padding-bottom: 62px;
    gap: 30px;
  }

  .about-hero-copy h1 {
    font-size: 40px;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 330px;
  }

  .about-hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .about-mission-band article,
  .about-philosophy > div,
  .ceo-message-panel,
  .ceo-message-body {
    padding: 26px;
  }

  .ceo-message {
    margin-bottom: 62px;
  }

  .about-value-item { padding: 16px 18px; }

  .about-team {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-content {
    padding: 58px 0 36px;
  }

  .hero-slide-dot {
    width: 6px;
    height: 6px;
    min-height: 6px;
    padding: 0;
  }

  .hero-slide-dot.active {
    width: 20px;
  }

  .split-media,
  .split-media img {
    min-height: 300px;
  }

  .service-overview img {
    height: 240px;
  }

  .service-path-strip {
    margin-top: -8px;
  }

  .service-path-strip a {
    min-height: 82px;
    grid-template-columns: 34px 1fr;
    justify-items: start;
    align-content: center;
    text-align: left;
  }

  .contact-panel {
    order: -1;
    position: static;
  }

  .cta-section {
    padding: 26px;
  }

  .footer-cta {
    transform: none;
    margin: 0 0 34px;
    padding: 24px;
  }

  .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .menu-open .header-actions {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   ANIMATIONS & SPECIAL EFFECTS
   ============================================================ */

/* --- Keyframes --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45); }
  70%  { box-shadow: 0 0 0 16px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.3) translateY(20px); }
  55%  { opacity: 1; transform: scale(1.06); }
  75%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}
@keyframes rippleExpand {
  to { transform: scale(4.5); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
@keyframes progressSlide {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes scrollBounce {
  0%, 100% { top: 5px;  opacity: 1; }
  80%       { top: 18px; opacity: 0.2; }
}
@keyframes typeCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateY(12px) scale(0.94); }
}
@keyframes spinOnce {
  to { transform: rotate(360deg); }
}

/* --- Scroll-reveal utility --- */
.anim-fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-fade-right{ opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.anim-scale     { opacity: 0; transform: scale(0.88);       transition: opacity 0.6s ease,  transform 0.6s ease; }

.anim-fade-up.visible,
.anim-fade-left.visible,
.anim-fade-right.visible,
.anim-scale.visible { opacity: 1; transform: none; }

.anim-d1 { transition-delay: 0.08s; }
.anim-d2 { transition-delay: 0.16s; }
.anim-d3 { transition-delay: 0.24s; }
.anim-d4 { transition-delay: 0.32s; }
.anim-d5 { transition-delay: 0.40s; }
.anim-d6 { transition-delay: 0.48s; }

/* --- Hero entrance animations --- */
.hero-eyebrow   { animation: fadeInUp 0.7s ease 0.1s both; }
.hero h1        { animation: fadeInUp 0.8s ease 0.3s both; }
.hero p         { animation: fadeInUp 0.8s ease 0.45s both; }
.hero-actions   { animation: fadeInUp 0.8s ease 0.6s both; }
.hero-slide-dots{ animation: fadeInUp 0.8s ease 0.72s both; }
.trust-row      { animation: fadeInUp 0.8s ease 0.85s both; }

/* --- Hero eyebrow badge --- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(77, 232, 208, 0.3);
  border-radius: 999px;
  background: rgba(77, 232, 208, 0.12);
  backdrop-filter: blur(10px);
  color: #4de8d0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero-eyebrow .icon { width: 14px; height: 14px; color: var(--teal); }

/* --- Scroll indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.3s both;
  pointer-events: none;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: scrollBounce 2.2s ease infinite;
}

/* --- Page progress bar --- */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: 3px;
  transform-origin: left;
  background: var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.page-progress.loading {
  opacity: 1;
  animation: progressSlide 0.45s ease both;
}

/* --- Stats band --- */
.stats-band-outer {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 72px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(5, 59, 92, 0.28);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
  cursor: default;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(255, 255, 255, 0.05); }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.02em;
}

.stat-suffix { color: #4de8d0; }

.stat-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* --- Ripple button --- */
.btn { position: relative; overflow: hidden; }

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transform: scale(0);
  animation: rippleExpand 0.7s linear;
  pointer-events: none;
}

/* --- Pulse glow on primary CTA --- */
.btn-primary.btn-pulse {
  animation: pulseRing 2.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* --- Gradient text --- */
.gradient-text {
  color: var(--blue);
}

/* --- Section label bar --- */
.section-label {
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}


/* --- Nav link underline --- */
.nav-links > a:not(.active),
.nav-dropdown > a:not(.active) { position: relative; }

.nav-links > a:not(.active)::after,
.nav-dropdown > a:not(.active)::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.nav-links > a:not(.active):hover::after,
.nav-dropdown > a:not(.active):hover::after { transform: scaleX(1); }

/* --- Service card glow on hover --- */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--sc, var(--blue)) 35%, transparent);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-icon { transition: all 0.35s ease; }

/* --- Why card icon spin --- */
.why-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

.why-card:hover .why-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-8deg) scale(1.12);
  box-shadow: 0 14px 28px rgba(54, 117, 188, 0.3);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.why-icon { transition: all 0.3s ease; }

/* --- Quick-access left accent (legacy override — now handled by .qa-card::before) --- */
.quick-access a {
  position: relative;
  overflow: hidden;
}

.quick-access a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transition: transform 0.25s ease;
}

.quick-access a:hover::before { transform: scaleY(1); }

/* --- Impact card enhanced --- */
.impact-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.impact-card img { transition: transform 0.5s ease; }
.impact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.impact-card:hover img { transform: scale(1.05); }

/* --- Approach cards --- */
.approach-cards article {
  transition: all 0.25s ease;
}

.approach-cards article:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-3px);
}

/* --- Partner cards premium --- */
.partner-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(5, 59, 92, 0.05);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

a.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(5, 59, 92, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.partner-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--pc) 12%, white);
  color: var(--pc);
  font-size: 22px;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  border: 1.5px solid color-mix(in srgb, var(--pc) 22%, transparent);
}

.partner-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.partner-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--grey);
  color: var(--muted);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  margin-bottom: 14px;
}

.partner-logo-img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

/* Logo is white SVG — needs dark backing */
.partner-logo-dark {
  background: #053b5c;
  border-radius: 10px;
  padding: 6px 12px;
}

.partner-link-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--sky);
  color: var(--blue);
}

.partner-link-icon .icon {
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
}

/* --- Testimonials premium --- */
.testimonials { background: linear-gradient(160deg, #f0f6ff 0%, #fafcff 100%); }

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(20, 184, 166, 0.1);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

/* --- Blog card --- */
.blog-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card img { transition: transform 0.5s ease; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card:hover img { transform: scale(1.05); }

/* --- About intro section --- */
.about-intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.about-intro-copy {
  position: sticky;
  top: 100px;
}

.about-pillars {
  display: grid;
  gap: 12px;
}

.about-pillar {
  padding: 20px 24px;
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--grey);
}

.about-pillar-num {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
}

.about-pillar h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.about-pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Mission / Vision cards --- */
.about-mv-section {
  background: var(--grey);
  padding: 72px 0;
}

.about-mv-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-mv-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow);
}

.about-mv-mission {
  border-top-color: var(--blue);
}

.about-mv-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--sky);
  color: var(--blue);
  margin-bottom: 20px;
}

.about-mv-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.about-mv-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.about-mv-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- Philosophy quote band --- */
.about-quote-band {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.about-quote-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  min-height: 400px;
}

.about-quote-content {
  padding: 56px 52px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.about-quote-label {
  color: #7de7da;
}

.about-quote-content blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.about-quote-content p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  line-height: 1.7;
}

.about-quote-image {
  overflow: hidden;
}

.about-quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
  display: block;
}

/* --- About story stats --- */
.about-story-stats article {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-story-stats article:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 22px rgba(5, 59, 92, 0.1);
}

/* --- Service overview card --- */
.service-overview-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.service-overview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* --- Contact cards enhanced --- */
.contact-cards article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-cards article > .icon:first-child {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--navy);
  margin-bottom: 6px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-cards article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.3);
}

.contact-cards article:hover > .icon:first-child {
  transform: scale(1.12) rotate(-6deg);
}

/* --- Quality grid cards --- */
.quality-grid article {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.quality-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.3);
}

/* --- Gallery enhanced --- */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 22, 34, 0.82) 0%, rgba(5, 22, 34, 0.12) 50%, transparent 100%);
  opacity: 0.35;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

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

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.55);
  opacity: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-zoom .icon { width: 20px; height: 20px; }

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* --- Floating actions tooltips --- */
.floating-actions a {
  position: relative;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.floating-actions a:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 22px 42px rgba(5, 59, 92, 0.32);
}

.floating-actions a::before {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
}

.floating-actions a:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* --- WhatsApp first-visit pulse badge --- */
@keyframes waBadgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

.wa-first-visit {
  animation: waBadgePulse 1.8s ease infinite;
}

.wa-first-visit::after {
  content: "Chat with us!";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 7px 14px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  pointer-events: none;
}

/* --- Blog article responsive --- */
@media (max-width: 900px) {
  .blog-article,
  .blog-article:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .blog-article:nth-child(even) .blog-article-media,
  .blog-article:nth-child(even) .blog-article-body {
    order: unset;
  }
  .blog-article-media img { height: 240px; }
}


/* --- Toast notifications --- */
.toast-wrap {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
  animation: toastIn 0.4s ease both;
  pointer-events: auto;
  max-width: min(460px, calc(100vw - 36px));
}

.toast.success { background: #166534; }
.toast.error   { background: #dc2626; }
.toast.out     { animation: toastOut 0.3s ease both; }

.toast .icon   { width: 18px; height: 18px; flex: 0 0 auto; }

/* --- Float icon utility --- */
.float-anim { animation: floatY 3.4s ease-in-out infinite; }

/* --- Stats band responsive --- */
@media (max-width: 1080px) {
  .stats-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-item  { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 720px) {
  .stats-band-outer { padding-bottom: 42px; }
  .stat-item { padding: 22px 16px; }
  .scroll-indicator { display: none; }
  .hero-eyebrow { font-size: 12px; padding: 6px 12px; }
}

/* ==============================================================
   RESPONSIVE OPTIMIZATION — ALL DEVICES
   Comprehensive coverage: 360 px → 1440 px+
   ============================================================== */

/* ── 1. Global overflow guard + mobile tap highlight ──────────── */
html, body { overflow-x: hidden; }

/* Body scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

a, button, .btn, .filter-btn, .gallery-item, .qa-card,
.nav-links a, .hero-slide-dot, .floating-actions a, .back-to-top {
  -webkit-tap-highlight-color: rgba(20, 184, 166, 0.16);
}

/* ── 2. SVH support — hides mobile browser chrome in viewport ── */
.hero { min-height: calc(100svh - 112px); }

/* ── 3. Tablet supplement  ≤ 1080 px ──────────────────────────
   These rules come AFTER the existing 1080px block so same-
   specificity rules here win, improving tablet layouts.        */
@media (max-width: 1080px) {
  /* Footer: 4-col → 2-col on tablet */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    padding: 48px 0 32px;
  }

  /* Service overview card: image full-width on tablet */
  .service-overview-card {
    grid-template-columns: 1fr;
  }
  .service-overview img {
    height: 260px;
  }
  .service-overview h2 {
    font-size: clamp(22px, 3.2vw, 32px);
  }

  /* Paragraph text slightly tighter on tablet */
  .about-intro-copy p,
  .about-commitment p,
  .about-compliance p {
    font-size: 15px;
  }

  /* Approach section: tighter on tablet */
  .approach-section {
    gap: 36px;
  }

  /* About hero: slightly less padding */
  .about-hero {
    padding-top: 36px;
    gap: 40px;
  }
}

/* ── 4. Phone supplement  ≤ 720 px ──────────────────────────── */
@media (max-width: 720px) {
  /* Footer: 1-col on phone */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 24px;
  }
  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    padding: 16px 0 100px;
  }
  .footer-copy {
    flex: 0 0 100%;
    font-size: 12px;
  }
  .footer-legal {
    text-align: left;
    flex: 1;
    font-size: 12px;
  }

  /* Hero h1: more compact on phones */
  .hero h1 {
    font-size: 36px;
    line-height: 1.07;
  }

  /* Hero CTA: full-width vertical stack on phones */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  /* Trust pills: single scrollable row — prevents 2nd row being clipped by hero overflow */
  .trust-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 18px;
  }
  .trust-row::-webkit-scrollbar { display: none; }
  .trust-row span { flex-shrink: 0; }

  /* Section padding: tighter on phones */
  .section, .split-section { padding: 56px 0; }
  .approach-section { padding-top: 56px; padding-bottom: 56px; }
  .about-hero { padding-top: 22px; padding-bottom: 56px; }

  /* Page hero padding */
  .page-hero-content { padding: 52px 0 32px; }

  /* CTA */
  .cta-section { padding: 52px 24px; margin-bottom: 56px; }
  .map-placeholder { min-height: 200px; padding: 22px; margin-bottom: 56px; }
  .footer-cta { padding: 22px; }

  /* Testimonial: smaller quote text */
  .testimonial-card p { font-size: 15.5px; }

  /* Lightbox: phone-friendly */
  .lightbox { padding: 16px; gap: 10px; }
  .lightbox img { max-width: 100%; max-height: 72vh; }

  /* Cookie banner: tighten on phones */
  .cookie-banner { left: 12px; bottom: 12px; width: calc(100vw - 24px); }

  /* Form panels */
  .booking-form, .detail-main, .contact-panel { padding: 20px; }

  /* Paragraphs */
  .about-intro-copy p, .about-commitment p, .about-compliance p { font-size: 14px; }
  .about-mv-section { padding: 48px 0; }
  .about-mv-card { padding: 24px; }
  .about-values-grid { grid-template-columns: 1fr; }

  /* Lab test grid: single column on phones */
  .lab-excellence-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Landscape phones: keep hero compact ──────────────────────── */
@media (max-height: 500px) and (max-width: 900px) {
  .hero { min-height: calc(100svh - 62px); }
  .hero-content { padding: 28px 16px 28px; }
  .hero h1 { font-size: 26px; line-height: 1.05; }
  .hero p { font-size: 14px; margin-top: 10px; }
  .hero-actions { margin-top: 14px; gap: 8px; }
  .hero-actions .btn { min-height: 44px; font-size: 13px; }
  .trust-row { margin-top: 12px; }
  .hero-eyebrow { margin-bottom: 10px; font-size: 11px; }
}

/* ── 5. Small phones  ≤ 480 px ──────────────────────────────── */
@media (max-width: 480px) {
  /* Hero: fill viewport minus the 62px sticky nav */
  .hero { min-height: calc(100vh - 62px); min-height: calc(100svh - 62px); }

  /* Hero typography */
  .hero-eyebrow { font-size: 11px; padding: 6px 10px; gap: 6px; margin-bottom: 14px; }
  .hero-content { padding: 44px 16px 22px; }
  .hero h1 { font-size: 28px; line-height: 1.1; }
  .hero p  { font-size: 15px; margin-top: 14px; }
  .hero-actions { margin-top: 18px; }
  .hero-actions .btn { min-height: 50px; font-size: 14px; }

  /* Navigation: tighter */
  .nav-shell { min-height: 62px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark img { width: 42px; height: 42px; }
  .brand-sep { height: 34px; margin: 0 12px; }
  .brand-line1 { font-size: 14px; }
  .brand-line2 { font-size: 9px; }
  .brand-rule { max-width: 16px; }

  /* Footer contact pills → icon-only squares on small phones */
  .footer-social-icons { gap: 10px; }
  .site-footer .footer-social-icons a { padding: 0; width: 48px; height: 48px; border-radius: 14px; justify-content: center; gap: 0; }
  .site-footer .footer-social-icons .fsi-label { display: none; }
  .site-footer .footer-social-icons .icon-solid { width: 20px; height: 20px; }

  /* Trust pills: compact on tiny screens */
  .trust-row span { padding: 8px 10px; font-size: 11px; min-height: 42px; }

  /* Stats band */
  .stats-band-outer { padding-bottom: 28px; }
  .stat-item { padding: 18px 10px; }
  .stat-number { font-size: clamp(28px, 7vw, 40px); }
  .stat-label { font-size: 12px; }

  /* Quick access */
  .qa-card { padding: 20px 16px 18px; }
  .qa-icon-wrap { width: 48px; height: 48px; margin-bottom: 14px; }
  .qa-label { font-size: 14px; }
  .qa-desc { font-size: 12px; }

  /* Section padding */
  .section, .split-section { padding: 46px 0; }
  .approach-section { padding-top: 46px; padding-bottom: 46px; gap: 26px; }
  .about-hero { padding-top: 18px; padding-bottom: 46px; gap: 16px; }

  /* About page */
  .about-hero-copy h1 { font-size: 26px; }
  .about-hero-copy p  { font-size: 14px; }
  .about-hero-media, .about-hero-media img { min-height: 240px; }
  .about-quote-content { padding: 32px 20px; }
  .ceo-message-panel, .ceo-message-body { padding: 18px; }

  /* Why cards */
  .why-card { min-height: auto; padding: 18px; }

  /* Headings */
  .section-title h2, .split-copy h2, .approach-copy h2,
  .cta-section h2, .page-hero h1 {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  /* Gallery: 2-col on small screens */
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 10px; }
  .gallery-item:nth-child(7n+1),
  .gallery-item:nth-child(7n+5) { grid-row: span 1; }

  /* Page hero */
  .page-hero { min-height: 240px; }
  .page-hero-content { padding: 38px 0 22px; }

  /* Form & detail panels */
  .booking-form, .detail-main, .contact-panel { padding: 16px; }
  .quality-grid article { padding: 20px; }
  .testimonial-card { padding: 18px 20px; }
  .testimonial-card p { font-size: 15px; }
  .testimonial-grid { grid-template-columns: 1fr; }

  /* CTA & utility */
  .cta-section { padding: 42px 20px; margin-bottom: 46px; }
  .quality-strip { padding: 18px; }
  .map-placeholder { min-height: 160px; padding: 18px; margin-bottom: 46px; }

  /* Footer CTA */
  .footer-cta { padding: 18px; margin: 0 0 22px; }
  .footer-cta h2, .site-footer .footer-cta h2 { font-size: 20px; }
  .footer-cta p { font-size: 15px; }

  /* Lightbox */
  .lightbox { padding: 10px; gap: 8px; }
  .lightbox img { max-width: 100%; max-height: 65vh; }
  .lightbox-close { right: 10px; top: 10px; width: 40px; height: 40px; }

  /* Cookie banner */
  .cookie-banner { left: 8px; bottom: 8px; width: calc(100vw - 16px); padding: 14px 16px; }
  .cookie-banner h2 { font-size: 14px; }
  .cookie-banner p  { font-size: 12.5px; }

  /* Toast: full-width on small phones */
  .toast-wrap {
    left: 8px; right: 8px; bottom: 76px;
    transform: none;
    align-items: stretch;
  }
  .toast { max-width: 100%; width: 100%; }

  /* Floating actions */
  .floating-actions { right: 12px; bottom: 12px; }
  .floating-actions a { width: 44px; height: 44px; }
  .back-to-top { left: 12px; bottom: 12px; width: 42px; height: 42px; }
}

/* NOTE: lab-diag + lab-process responsive rules are placed AFTER
   base styles below (~line 5158) so they correctly override them. */

/* ── 6. Minimum phones  ≤ 360 px ────────────────────────────── */
@media (max-width: 360px) {
  .hero h1          { font-size: 23px; }
  .hero-eyebrow     { font-size: 10px; padding: 5px 8px; }
  .hero-actions .btn { padding: 10px 12px; font-size: 13px; min-height: 46px; }

  .brand            { gap: 8px; }
  .brand-mark       { width: 34px; height: 34px; }
  .brand-mark img   { width: 34px; height: 34px; }
  .brand-line1 { font-size: 12px; }
  .brand-line2 { font-size: 8.5px; letter-spacing: 0.07em; }
  .brand-rule { width: 10px; }

  .stat-number      { font-size: 24px; }
  .stat-label       { font-size: 11px; }

  .qa-card { padding: 16px 14px; }
  .qa-icon-wrap { width: 42px; height: 42px; border-radius: 10px; }
  .qa-icon-wrap .icon { width: 20px; height: 20px; }

  .section-title h2, .split-copy h2, .approach-copy h2,
  .cta-section h2, .page-hero h1 {
    font-size: clamp(21px, 6.5vw, 28px);
  }
}

/* ==============================================================
   LABORATORY TESTS DISPLAY
   ============================================================== */

/* ── Lab Diagnostics Premium Hero ─────────────────────────── */
.lab-diag-hero {
  position: relative;
  background: #020c16;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lab-diag-hero-media {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 58%;
  pointer-events: none;
}

.lab-diag-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.85);
}

.lab-diag-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #020c16 0%,
    rgba(2, 12, 22, 0.88) 35%,
    rgba(2, 12, 22, 0.4) 70%,
    rgba(2, 12, 22, 0.15) 100%);
}

.lab-diag-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 48px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 40px 60px;
  width: 100%;
  box-sizing: border-box;
}

.lab-diag-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(20, 184, 166, 0.13);
  border: 1px solid rgba(20, 184, 166, 0.32);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4de8d0;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.lab-diag-hero-badge .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lab-diag-h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 18px;
}

.lab-diag-h1 em {
  font-style: normal;
  color: #4de8d0;
}

.lab-diag-lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 500px;
  margin: 0 0 24px;
}

.lab-diag-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 36px;
}

.lab-diag-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.lab-diag-trust-pills .icon {
  width: 14px;
  height: 14px;
  color: #4de8d0;
  flex-shrink: 0;
}

.lab-diag-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Test menu card */
.lab-test-menu {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 540px;
  margin-top: 24px;
}

.lab-test-menu-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.ltm-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

.ltm-title .icon { width: 15px; height: 15px; color: #4de8d0; flex-shrink: 0; }

.ltm-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #4de8d0;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.ltm-link:hover { opacity: 0.75; }
.ltm-link .icon { width: 12px; height: 12px; }

.lab-test-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}
.lab-test-menu-body::-webkit-scrollbar { width: 4px; }
.lab-test-menu-body::-webkit-scrollbar-track { background: transparent; }
.lab-test-menu-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.18); border-radius: 4px; }

.ltm-cat { margin-bottom: 18px; }
.ltm-cat:last-child { margin-bottom: 0; }

.ltm-cat-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ltm-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lc, #0369a1);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--lc, #0369a1);
}

.ltm-cat-name {
  flex: 1;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lc, #0369a1);
}

.ltm-cat-count {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.07);
  padding: 1px 8px;
  border-radius: 999px;
}

.ltm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.ltm-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  cursor: default;
}

.ltm-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lc, #0369a1);
  opacity: 0.65;
  flex-shrink: 0;
}

.ltm-list li:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.95);
}

/* Bottom strip */
.lab-diag-hero-strip {
  position: relative;
  z-index: 1;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  scrollbar-width: none;
}

.lab-diag-hero-strip::-webkit-scrollbar { display: none; }

.lab-diag-hero-strip span {
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Process / How It Works ───────────────────────────────── */
.lab-process {
  background: #f2f6fb;
  padding: 86px 24px;
}

.lab-process-wrap {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.lab-process-wrap > h2 {
  margin: 8px 0 52px;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
}

.lab-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.lab-process-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 2px 20px rgba(5, 59, 92, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
}

.lab-process-card:hover {
  box-shadow: 0 8px 36px rgba(5, 59, 92, 0.13);
  transform: translateY(-3px);
}

.lab-process-num {
  display: block;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: rgba(5, 59, 92, 0.06);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.lab-process-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.lab-process-icon .icon {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.lab-process-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}

.lab-process-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* ── Lab Diag Hero + Process — responsive (MUST be after base styles) ── */
@media (max-width: 1080px) {
  .lab-diag-hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 32px 44px;
    gap: 32px;
  }
  .lab-diag-hero-media { width: 100%; opacity: 0.35; }
  .lab-diag-hero-media::after {
    background: linear-gradient(180deg, rgba(2,12,22,0.6) 0%, rgba(2,12,22,0.55) 100%);
  }
  .lab-diag-hero-aside { display: none; }
  .lab-diag-lead { max-width: 100%; }
}

@media (max-width: 720px) {
  .lab-diag-hero { min-height: 100svh; }
  .lab-diag-hero-inner { padding: 72px 24px 40px; }
  .lab-process-grid { grid-template-columns: 1fr; gap: 16px; }
  .lab-process { padding: 56px 20px; }
  .lab-process-card { padding: 24px 20px; }
  .lab-process-card h3 { font-size: 16px; }
}

@media (max-width: 480px) {
  .lab-diag-h1 { font-size: 26px; line-height: 1.1; }
  .lab-diag-actions { flex-direction: column; }
  .lab-diag-actions .btn { width: 100%; justify-content: center; }
}

/* ── Lab tests full page (detail page) ── */
.lab-tests-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.lab-tests-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.lab-category {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lab-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.3);
}

.lab-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--navy);
  color: var(--white);
}

.lab-cat-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.lab-cat-icon .icon { width: 17px; height: 17px; }

.lab-cat-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  flex: 1;
  line-height: 1.3;
}

.lab-cat-count {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.lab-test-list {
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  display: grid;
  gap: 0;
}

.lab-test-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(217, 232, 239, 0.55);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.lab-test-list li:last-child { border-bottom: none; }

.lab-test-list li .icon {
  width: 14px;
  height: 14px;
  color: var(--teal);
  margin-top: 2px;
  flex: 0 0 auto;
}

.lab-tests-cta {
  margin-top: 40px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lab-tests-cta p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}

.lab-tests-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

/* ── Lab panel strip (services overview page) ── */
.lab-panel-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.lab-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lab-panel-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
}

.lab-panel-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
}

.lab-panel-cta-btn {
  flex: 0 0 auto;
}

.lab-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lab-panel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--navy);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
  min-width: 0;
}

.lab-panel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.35);
}

.lab-panel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--navy);
  border: 1px solid #c8dfe8;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lab-panel-card:hover .lab-panel-icon {
  background: var(--blue);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1) rotate(-5deg);
}

.lab-panel-icon .icon { width: 20px; height: 20px; }

.lab-panel-card-body {
  flex: 1;
  min-width: 0;
}

.lab-panel-card-body strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 3px;
}

.lab-panel-card-body span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lab-panel-card > .icon:last-child {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex: 0 0 auto;
}

/* ── Responsive: lab tests ── */
@media (max-width: 1080px) {
  .lab-tests-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lab-panel-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lab-panel-header { align-items: flex-start; }
  .lab-tests-cta    { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .lab-tests-grid   { grid-template-columns: 1fr; }
  .lab-panel-grid   { grid-template-columns: 1fr; }
  .lab-panel-header { flex-direction: column; align-items: flex-start; }
  .lab-panel-cta-btn { width: 100%; justify-content: center; }
  .lab-tests-section { padding-top: 56px; padding-bottom: 56px; }
  .lab-panel-section { padding-top: 56px; padding-bottom: 56px; }
  .lab-tests-cta { padding: 20px; }
  .lab-tests-cta-actions { width: 100%; }
  .lab-tests-cta-actions .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  .lab-cat-header { padding: 12px 14px; }
  .lab-cat-header h3 { font-size: 13px; }
  .lab-test-list  { padding: 10px 12px; }
  .lab-test-list li { font-size: 13px; padding: 6px 0; }
  .lab-panel-card { padding: 14px; gap: 10px; }
  .lab-panel-icon { width: 38px; height: 38px; }
  .lab-panel-card-body strong { font-size: 13px; }
}

/* ── Microscope panel (quality, lab pages) ── */
.microscope-panel {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 320px;
}

.microscope-panel img {
  max-height: 340px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(5,59,92,0.15));
}

/* ── Lab Excellence Section (detail page redesign) ── */
.lab-excellence-section {
  background: linear-gradient(160deg, #eef6ff 0%, #f5fafe 50%, #ffffff 100%);
  padding: 80px 24px;
}

.lab-excellence-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.lab-excellence-header {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.lab-excellence-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: 1.5px solid #c7dff7;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #053b5c;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(5,59,92,0.07);
}

.lab-excellence-badge-pill .icon {
  width: 16px;
  height: 16px;
  color: #0d9488;
}

.lab-excellence-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #053b5c;
  margin-bottom: 14px;
}

.lab-excellence-eyebrow::after {
  content: '';
  width: 40px;
  height: 2.5px;
  background: #0d9488;
  border-radius: 2px;
  flex-shrink: 0;
}

.lab-excellence-title {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 900;
  color: #053b5c;
  line-height: 1.1;
  margin: 0 0 18px;
}

.lab-excellence-title span {
  color: #0d9488;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.lab-excellence-left p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.75;
  max-width: 540px;
  margin: 0;
}

.lab-excellence-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-excellence-microscope {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 48px rgba(5,59,92,0.13));
}

.lab-excellence-circle-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(5,59,92,0.12);
  color: #0d9488;
  z-index: 2;
}

.lab-excellence-dots {
  position: absolute;
  bottom: 16px;
  left: -8px;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 7px;
  z-index: 0;
}

.lab-excellence-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7dff7;
  display: block;
}

/* Cards */
.lab-excellence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.lab-excellence-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(5,59,92,0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}

.lab-excellence-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(5,59,92,0.14);
}

.lab-excellence-card-header {
  padding: 22px 22px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lab-excellence-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--lc, #053b5c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lab-excellence-icon .icon {
  width: 22px;
  height: 22px;
  color: #fff;
}

.lab-excellence-card-header h3 {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #053b5c;
  line-height: 1.3;
  margin: 0;
  min-width: 0;
}

.lab-excellence-count {
  background: var(--lc, #053b5c);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.lab-excellence-divider {
  height: 3px;
  background: #0d9488;
  margin: 0 22px 14px;
  border-radius: 2px;
}

.lab-excellence-list {
  list-style: none;
  padding: 0 22px 22px;
  margin: 0;
  flex: 1;
}

.lab-excellence-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f3f6fa;
}

.lab-excellence-list li:last-child { border-bottom: none; }

.lab-excellence-list .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #0d9488;
  margin-top: 1px;
}

.lab-excellence-bar {
  height: 5px;
  background: var(--lc, #053b5c);
}

/* Tagline */
.lab-excellence-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: #4a5568;
  padding: 28px 0 32px;
  border-top: 1px solid #e2ecf7;
  margin-bottom: 8px;
}

.lab-excellence-tagline .icon {
  width: 20px;
  height: 20px;
  color: #0d9488;
  flex-shrink: 0;
}

.lab-excellence-tagline strong { color: #0d9488; }

/* Responsive */
@media (max-width: 1024px) {
  .lab-excellence-header { grid-template-columns: 1fr; }
  .lab-excellence-right { display: none; }
  .lab-excellence-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .lab-excellence-section { padding: 56px 16px; }
  .lab-excellence-grid { grid-template-columns: 1fr; gap: 16px; }
  .lab-excellence-title { font-size: 34px; }
}

/* ── Lab FAQ ── */
.lab-faq {
  background: #fff;
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.lab-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.lab-faq-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 36px;
}

.lab-faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lab-faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.lab-faq-item:has([aria-expanded="true"]) {
  box-shadow: 0 4px 20px rgba(5,59,92,0.08);
}

.lab-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.lab-faq-q:hover { background: #f6faff; }

.lab-faq-q .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.25s;
}

.lab-faq-q[aria-expanded="true"] .icon { transform: rotate(90deg); }

.lab-faq-a {
  padding: 0 24px 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.lab-faq-a p { margin: 0; }

@media (max-width: 640px) {
  .lab-faq { padding: 56px 16px; }
  .lab-faq-q { padding: 16px 18px; font-size: 15px; }
  .lab-faq-a { padding: 0 18px 16px; }
}

/* ── Outline SVG icon ── */
.icon-line {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Quick Contact Bar ── */
.qc-bar {
  display: flex;
  background: var(--navy);
}

.qc-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.18s;
}
.qc-item:last-child { border-right: none; }
.qc-item:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.qc-item .icon-line { color: var(--teal); width: 26px; height: 26px; }
.qc-wa .icon-line { color: #25d366; }
.qc-wa { border-left: 3px solid #25d366; }
.qc-item strong { display: block; font-size: 14px; font-weight: 800; line-height: 1.2; }
.qc-item small  { display: block; font-size: 12px; opacity: 0.65; margin-top: 2px; }

/* ── Contact info column ── */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-block {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ci-hd {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.ci-hd h3 { margin: 0; font-size: 16px; font-weight: 800; color: var(--navy); }
.ci-hd .icon-line { color: var(--teal); }

.ci-address {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.ci-dir-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
}
.ci-dir-link:hover { color: var(--navy); }
.ci-dir-link .icon { width: 14px; height: 14px; }

.contact-map iframe {
  display: block;
  width: 100%;
  border-radius: 12px;
  min-height: 240px;
  border: 1px solid var(--border);
}

/* ── FAQ section (contact page) ── */
.faq-section {
  padding: 80px 24px;
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0 32px;
}

/* ── Form status feedback ── */
.form-status:not(:empty) {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.form-status.success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.form-status.error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

@media (max-width: 640px) {
  .qc-bar { flex-direction: column; }
  .qc-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 20px; }
  .qc-item:last-child { border-bottom: none; }
  .faq-section { padding: 56px 16px; }
}

/* ── 404 Not Found ── */
.not-found-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(160deg, #eef6ff 0%, #f9fbff 100%);
}

.not-found-inner {
  text-align: center;
  max-width: 540px;
}

.not-found-code {
  display: block;
  font-size: clamp(80px, 18vw, 140px);
  font-weight: 900;
  font-family: var(--font-display);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--blue);
  opacity: 0.15;
  margin-bottom: 12px;
}

.not-found-inner h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
}

.not-found-inner p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
}

.not-found-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Leadership Message Standalone Pages (lm-*) ── */
.lm-page {
  background: #fff;
  min-height: 80vh;
}

.lm-page-hero {
  background: linear-gradient(135deg, #eef6ff 0%, #e4f0fa 100%);
  border-bottom: 1px solid #d4e6f5;
  padding: 52px 24px 48px;
}

.lm-page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.lm-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.18s;
}

.lm-back-link:hover { color: var(--navy); }

.lm-back-link .icon {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

.lm-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 0;
  line-height: 1.1;
}

.lm-page-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 56px 24px 88px;
  align-items: start;
}

.lm-page-aside {
  position: sticky;
  top: 104px;
}

.lm-photo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(5, 59, 92, 0.09);
}

.lm-photo-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.lm-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.lm-photo-card:hover .lm-photo-wrap img { transform: scale(1.03); }

.lm-photo-info {
  padding: 20px 22px 4px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, #f8fafc, #fff);
}

.lm-photo-info strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.lm-photo-info span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.lm-org {
  margin-top: 8px !important;
  font-size: 11px !important;
  font-weight: 700;
  color: var(--blue) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lm-card-cta {
  padding: 16px 22px 20px;
}

.lm-card-cta .btn {
  width: 100%;
  justify-content: center;
}

.lm-page-article {
  max-width: 680px;
}

.lm-page-article p {
  font-size: 16.5px;
  line-height: 1.82;
  color: var(--text);
  margin: 0 0 20px;
}

.lm-page-article .lm-opening {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}

.lm-page-article .lm-closing {
  background: linear-gradient(135deg, #eef6ff, #e8f3fb);
  border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin-top: 8px;
  font-size: 16px !important;
  color: var(--navy) !important;
}

.lm-signature {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lm-signature strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}

.lm-signature span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 860px) {
  .lm-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 64px;
  }

  .lm-page-aside { position: static; }

  .lm-photo-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    border-radius: 16px;
  }

  .lm-photo-wrap {
    aspect-ratio: auto;
    min-height: 180px;
  }

  .lm-photo-info {
    border-top: none;
    border-left: 1px solid var(--border);
    background: #fff;
    padding: 18px 16px 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .lm-card-cta {
    grid-column: 1 / -1;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--border);
  }

  .lm-page-article p { font-size: 15.5px; }
  .lm-page-article .lm-opening { font-size: 18px; }
}

@media (max-width: 480px) {
  .lm-page-hero { padding: 40px 18px 36px; }
  .lm-page-hero h1 { font-size: 24px; }
  .lm-photo-card { grid-template-columns: 110px 1fr; }
  .lm-photo-wrap { min-height: 150px; }
  .lm-signature strong { font-size: 17px; }
}

/* ── Test Catalog ─────────────────────────────────────────── */
.tc-hero {
  background: linear-gradient(135deg, #032d47 0%, #064f78 55%, #0369a1 100%);
  padding: 72px 5% 64px;
  text-align: center;
  color: var(--white);
}
.tc-hero-inner { max-width: 740px; margin: 0 auto; }
.tc-hero .section-label { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.25); }
.tc-hero h1 { font-size: clamp(28px, 5vw, 48px); color: var(--white); margin: 10px 0 12px; }
.tc-hero p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 28px; }

.tc-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.tc-search-wrap .icon-line {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #94a3b8;
  pointer-events: none;
}
.tc-search {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.tc-search::placeholder { color: rgba(255,255,255,0.5); }
.tc-search:focus { outline: none; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.16); }

.tc-body { padding-top: 36px; }

.tc-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.tc-tabs::-webkit-scrollbar { display: none; }
.tc-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  font-family: inherit;
}
.tc-tab:hover { border-color: var(--navy); color: var(--navy); }
.tc-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.tc-count-bar {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.tc-count-num { font-weight: 700; color: var(--navy); }

.tc-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: 0 2px 16px rgba(5,59,92,0.06);
}
.tc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.tc-table thead th {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 16px;
  text-align: left;
  white-space: nowrap;
}
.tc-table thead th:first-child { border-radius: 12px 0 0 0; }
.tc-table thead th:last-child { border-radius: 0 12px 0 0; width: 48px; text-align: center; }

.tc-row {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  cursor: pointer;
}
.tc-row:hover { background: #f0f6fc; }
.tc-row td { padding: 13px 16px; vertical-align: middle; }

.tc-cell-name { min-width: 200px; }
.tc-name {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 4px;
}
.tc-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tcc, #053b5c) 12%, transparent);
  color: var(--tcc, #053b5c);
  border: 1px solid color-mix(in srgb, var(--tcc, #053b5c) 25%, transparent);
}

.tc-cell-chip { white-space: nowrap; }
.tc-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid var(--border);
}
.tc-chip-ok { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.tc-chip-warn { background: #fef9c3; color: #854d0e; border-color: #fde68a; }
.tc-chip-info { background: #e0f2fe; color: #075985; border-color: #bae6fd; }

.tc-cell-time { color: var(--text-muted); font-size: 13.5px; white-space: nowrap; min-width: 120px; }

.tc-cell-expand { text-align: center; width: 52px; }
.tc-expand-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.tc-expand-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tc-expand-btn[aria-expanded="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tc-expand-btn[aria-expanded="true"] .icon-line { transform: rotate(180deg); }
.tc-expand-btn .icon-line { width: 16px; height: 16px; transition: transform 0.2s; }

.tc-detail-row { background: #f8fafc; }
.tc-detail-row td { padding: 0; border-bottom: 1px solid var(--border); }
.tc-detail-body {
  padding: 20px 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--navy);
}
.tc-detail-desc { font-size: 14.5px; color: var(--text); line-height: 1.65; margin: 0; }
.tc-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.tc-detail-meta span { display: flex; align-items: center; gap: 5px; }
.tc-detail-meta .icon { width: 14px; height: 14px; }
.tc-detail-prep {
  font-size: 13.5px;
  color: var(--text-muted);
  background: #fff8ed;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 9px 13px;
  margin: 0;
}
.tc-detail-body .btn { align-self: flex-start; margin-top: 4px; }
.tc-detail-body .btn + .btn { margin-top: 0; margin-left: 8px; }
.tc-detail-body { flex-flow: row wrap; align-items: flex-start; }
.tc-detail-desc,
.tc-detail-meta,
.tc-detail-prep { flex: 0 0 100%; }

.btn-sm { padding: 8px 16px; font-size: 13.5px; }

.tc-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
  font-size: 15px;
}

.lab-panel-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .tc-hero { padding: 52px 5% 48px; }
  /* hide Fasting column */
  .tc-table thead th:nth-child(3),
  .tc-table .tc-row td:nth-child(3) { display: none; }
  .tc-detail-body .btn { width: 100%; justify-content: center; margin-left: 0 !important; }
}
@media (max-width: 540px) {
  /* hide Sample column */
  .tc-table thead th:nth-child(2),
  .tc-table .tc-row td:nth-child(2) { display: none; }
  .tc-cell-time { font-size: 12px; }
  .tc-name { font-size: 13.5px; }
}
@media (max-width: 480px) {
  .tc-hero { padding: 40px 18px 36px; }
  .tc-search { font-size: 14px; padding: 11px 14px 11px 44px; }
  /* hide Turnaround column — only Test Name + expand remain */
  .tc-table thead th:nth-child(4),
  .tc-table .tc-row td:nth-child(4) { display: none; }
  .tc-tab { padding: 7px 12px; font-size: 11.5px; }
  .tc-body { padding-top: 24px; }
  .tc-table-wrap { border-radius: 10px; }
  .tc-table thead th,
  .tc-row td { padding: 10px 12px; }
}
