@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Dancing+Script:wght@700&display=swap');

:root {
  --navy: #0B1F4B;
  --green: #25D366;
  --green-dark: #1EAF55;
  --white: #ffffff;
  --ink: #16213d;
  --muted: #64708a;
  --line: #dfe5ef;
  --soft: #f5f8fc;
  --mint: #e8fbf0;
  --amber: #ffb84d;
  --blue: #2d6cdf;
  --shadow: 0 18px 45px rgba(11, 31, 75, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(45, 108, 223, 0.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  line-height: 1.6;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.navbar-logo-img {
  display: block;
  width: min(280px, 54vw);
  height: auto;
  transition: transform 0.2s ease;
}

.footer-logo-img {
  display: block;
  width: min(260px, 100%);
  height: auto;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.logo:hover .navbar-logo-img,
.logo:hover .footer-logo-img {
  transform: scale(1.02);
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  max-width: 780px;
}

.hero-copy,
.page-hero p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 640px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: var(--green);
  color: #062615;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(11, 31, 75, 0.16);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(11, 31, 75, 0.08);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.lab-photo {
  position: absolute;
  inset: 0 0 80px 48px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 31, 75, 0.16), rgba(37, 211, 102, 0.1)),
    url("https://images.unsplash.com/photo-1581093458791-9d09f85a85f6?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  left: 0;
  right: 42px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(11, 31, 75, 0.95);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
}

.hero-panel strong {
  font-size: 2rem;
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.mission-band h2,
.cta-band h2,
.contact-details h2,
.contact-form h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.card-grid,
.feature-grid,
.team-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-item,
.team-card,
.test-card,
.contact-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 31, 75, 0.06);
}

.service-card,
.feature-item,
.team-card,
.test-card {
  padding: 24px;
}

.service-card,
.test-card {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.test-card:hover,
.test-card.is-selected {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 18px 36px rgba(11, 31, 75, 0.12);
  transform: translateY(-3px);
}

.service-card h3,
.feature-item h3,
.team-card h3,
.test-card h2 {
  font-size: 1.42rem;
}

.service-card p,
.feature-item p,
.team-card p,
.test-card p,
.prose p,
.detail-item p {
  color: var(--muted);
  margin-top: 10px;
}

.why-section {
  border-top: 1px solid var(--line);
}

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

.feature-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-weight: 800;
}

.page-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 56px;
}

.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.prose {
  display: grid;
  gap: 18px;
}

.mission-band,
.cta-band {
  padding: 42px;
  border-radius: 8px;
  background: var(--navy);
}

.dynamic-strip,
.insight-panel,
.package-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(45, 108, 223, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7fbff, var(--mint));
}

.dynamic-strip h2,
.insight-panel h2,
.package-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.insight-list,
.package-list {
  display: grid;
  gap: 12px;
}

.insight-list p,
.package-list span {
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 75, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 700;
}

.mission-band h2,
.cta-band h2 {
  color: var(--white);
}

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

.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cert-item {
  min-width: 160px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: center;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band .btn-whatsapp {
  margin-top: 0;
  flex: 0 0 auto;
}

.booking-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.search-field {
  display: grid;
  gap: 8px;
  min-width: min(100%, 340px);
  color: var(--navy);
  font-weight: 800;
}

.search-field input,
.booking-summary input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.segmented-control button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.chip.is-active,
.segmented-control button.is-active {
  border-color: transparent;
  background: var(--navy);
  color: var(--white);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.booking-grid {
  align-items: stretch;
}

.test-card {
  display: flex;
  flex-direction: column;
}

.test-card .btn {
  width: 100%;
  margin-top: auto;
}

.test-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.test-meta span {
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.enquire-more-card {
  border: 2px dashed rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, var(--mint), #f7fbff);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.enquire-more-card .card-kicker {
  color: var(--blue);
}

.enquire-more-card h2 {
  font-size: 1.5rem;
}

.enquire-more-card p {
  max-width: 280px;
}

.enquire-more-card .btn {
  margin-top: 18px;
  width: auto;
  padding: 0 28px;
}

.booking-summary {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-summary h2 {
  font-size: 1.8rem;
}

.booking-summary p:not(.eyebrow),
.empty-state {
  color: var(--muted);
}

.booking-summary label {
  color: var(--navy);
  font-weight: 800;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-details,
.contact-form {
  padding: 30px;
}

.detail-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-item span {
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(37, 211, 102, 0.22);
  border-color: var(--green);
}

.contact-form .btn {
  margin-top: 10px;
}

.site-footer {
  margin-top: 42px;
  background: var(--navy);
  color: var(--white);
}

.footer-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  color: var(--white);
}

.footer-logo .logo-mark {
  background: var(--white);
  color: var(--navy);
}

.site-footer h2 {
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--green);
  color: #062615;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.34);
}

.about-page {
  --about-blue: #0046ad;
  --about-red: #cc2229;
  --about-yellow: #ffc54f;
  --about-yellow-soft: #fff5d8;
  --about-ink: #132348;
  --about-muted: #5f6880;
  background:
    linear-gradient(180deg, rgba(255, 245, 216, 0.78) 0, rgba(255, 255, 255, 0) 440px),
    #ffffff;
  color: var(--about-ink);
}

.about-page .site-header {
  border-bottom: 4px solid var(--about-red);
  box-shadow: 0 14px 30px rgba(0, 70, 173, 0.08);
}

.about-page .nav-links a {
  color: var(--about-blue);
}

.about-page .nav-links a:hover,
.about-page .nav-links a[aria-current="page"] {
  background: var(--about-yellow-soft);
  color: var(--about-red);
}

.about-page .page-hero {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin-top: 42px;
  padding: 76px clamp(24px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(0, 70, 173, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 197, 79, 0.95), rgba(255, 245, 216, 0.86) 48%, #ffffff 48%),
    #ffffff;
  box-shadow: 0 22px 52px rgba(0, 70, 173, 0.12);
}

.about-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--about-red);
}

.about-page .page-hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 7vw, 92px);
  bottom: 54px;
  width: 148px;
  height: 10px;
  border-radius: 999px;
  background: var(--about-blue);
  box-shadow: 0 20px 0 var(--about-red), 0 -20px 0 rgba(255, 197, 79, 0.8);
}

.about-page .eyebrow {
  color: var(--about-red);
  letter-spacing: 0.14em;
}

.about-page .page-hero h1,
.about-page .section-heading h2,
.about-page .split-section h2,
.about-page .mission-band h2,
.about-page .insight-panel h2,
.about-page .cta-band h2 {
  color: var(--about-blue);
}

.about-page .page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.about-page .page-hero p:not(.eyebrow) {
  color: var(--about-ink);
  font-weight: 500;
}

.about-page .section {
  padding: 66px 0;
}

.about-page .split-section {
  align-items: center;
  border-bottom: 1px solid rgba(0, 70, 173, 0.12);
}

.about-page .prose {
  padding: 28px;
  border-left: 4px solid var(--about-yellow);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 70, 173, 0.08);
}

.about-page .prose p,
.about-page .team-card p {
  color: var(--about-muted);
}

.about-page .mission-band {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(135deg, var(--about-blue), #072762);
  box-shadow: 0 24px 52px rgba(0, 70, 173, 0.18);
}

.about-page .mission-band::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(42%, 340px);
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(255, 197, 79, 0.95) 35% 67%, var(--about-red) 67%);
  opacity: 0.95;
}

.about-page .mission-band > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-page .mission-band .eyebrow,
.about-page .mission-band h2 {
  color: #ffffff;
}

.about-page .insight-panel {
  border-color: rgba(204, 34, 41, 0.22);
  background:
    linear-gradient(135deg, #ffffff, var(--about-yellow-soft));
}

.about-page .insight-list p {
  border-color: rgba(0, 70, 173, 0.12);
  background: #ffffff;
  color: var(--about-blue);
  box-shadow: inset 4px 0 0 var(--about-red);
}

.about-page .team-card {
  border-color: rgba(0, 70, 173, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 70, 173, 0.08);
}

.about-page .team-card:nth-child(1) {
  border-top: 4px solid var(--about-red);
}

.about-page .team-card:nth-child(2) {
  border-top: 4px solid var(--about-blue);
}

.about-page .team-card:nth-child(3) {
  border-top: 4px solid var(--about-yellow);
}

.about-page .avatar {
  background: var(--about-yellow);
  color: var(--about-blue);
  box-shadow: inset 0 -4px 0 rgba(204, 34, 41, 0.28);
}

.about-page .team-card h3 {
  color: var(--about-blue);
}

.about-page .cert-item {
  border-color: rgba(204, 34, 41, 0.2);
  background:
    linear-gradient(180deg, #ffffff, var(--about-yellow-soft));
  color: var(--about-red);
  box-shadow: 0 14px 28px rgba(0, 70, 173, 0.08);
}

.about-page .cta-band {
  background:
    linear-gradient(135deg, var(--about-yellow), #ffe49a);
  box-shadow: 0 20px 42px rgba(0, 70, 173, 0.12);
}

.about-page .cta-band h2 {
  color: var(--about-blue);
}

.about-page .btn-whatsapp {
  background: var(--about-red);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(204, 34, 41, 0.28);
}

.about-page .btn-whatsapp:hover {
  background: var(--about-blue);
}

.about-page .floating-whatsapp {
  background: var(--about-red);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(204, 34, 41, 0.3);
}

.about-page .site-footer {
  background: var(--about-blue);
}

.about-page .site-footer h2 {
  color: var(--about-yellow);
}

.book-page,
.contact-page {
  --theme-blue: #0046ad;
  --theme-red: #cc2229;
  --theme-yellow: #ffc54f;
  --theme-yellow-soft: #fff5d8;
  --theme-ink: #132348;
  --theme-muted: #5f6880;
  background:
    linear-gradient(180deg, rgba(255, 245, 216, 0.72) 0, rgba(255, 255, 255, 0) 420px),
    #ffffff;
  color: var(--theme-ink);
}

.book-page .site-header,
.contact-page .site-header {
  border-bottom: 4px solid var(--theme-red);
  box-shadow: 0 14px 30px rgba(0, 70, 173, 0.08);
}

.book-page .nav-links a,
.contact-page .nav-links a {
  color: var(--theme-blue);
}

.book-page .nav-links a:hover,
.book-page .nav-links a[aria-current="page"],
.contact-page .nav-links a:hover,
.contact-page .nav-links a[aria-current="page"] {
  background: var(--theme-yellow-soft);
  color: var(--theme-red);
}

.book-page .page-hero,
.contact-page .page-hero {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin-top: 42px;
  padding: 72px clamp(24px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(0, 70, 173, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 197, 79, 0.9), rgba(255, 245, 216, 0.86) 46%, #ffffff 46%),
    #ffffff;
  box-shadow: 0 22px 52px rgba(0, 70, 173, 0.12);
}

.book-page .page-hero::before,
.contact-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--theme-red);
}

.book-page .page-hero::after,
.contact-page .page-hero::after {
  content: "";
  position: absolute;
  right: clamp(22px, 7vw, 92px);
  bottom: 46px;
  width: 148px;
  height: 10px;
  border-radius: 999px;
  background: var(--theme-blue);
  box-shadow: 0 20px 0 var(--theme-red), 0 -20px 0 rgba(255, 197, 79, 0.82);
}

.book-page .eyebrow,
.contact-page .eyebrow {
  color: var(--theme-red);
  letter-spacing: 0.14em;
}

.book-page .page-hero h1,
.contact-page .page-hero h1,
.book-page .booking-summary h2,
.contact-page .contact-details h2,
.contact-page .contact-form h2,
.contact-page .package-band h2 {
  color: var(--theme-blue);
}

.book-page .page-hero h1,
.contact-page .page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 6vw, 4.45rem);
}

.book-page .page-hero p:not(.eyebrow),
.contact-page .page-hero p:not(.eyebrow) {
  color: var(--theme-ink);
  font-weight: 500;
}

.book-page .section,
.contact-page .section {
  padding: 66px 0;
}

.book-page .booking-tools {
  padding: 24px;
  border: 1px solid rgba(0, 70, 173, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 70, 173, 0.08);
}

.book-page .search-field {
  color: var(--theme-blue);
}

.book-page .search-field input,
.book-page .booking-summary input,
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  border-color: rgba(0, 70, 173, 0.2);
  background: #ffffff;
}

.book-page .search-field input:focus,
.book-page .booking-summary input:focus,
.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
  outline: 3px solid rgba(255, 197, 79, 0.42);
  border-color: var(--theme-red);
}

.book-page .chip,
.book-page .segmented-control button {
  border-color: rgba(0, 70, 173, 0.18);
  color: var(--theme-blue);
}

.book-page .chip.is-active,
.book-page .segmented-control button.is-active {
  background: var(--theme-blue);
  color: #ffffff;
  box-shadow: inset 0 -4px 0 var(--theme-red);
}

.book-page .booking-shell {
  margin-top: 26px;
}

.book-page .test-card {
  border-color: rgba(0, 70, 173, 0.12);
  border-top: 4px solid var(--theme-yellow);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 70, 173, 0.08);
}

.book-page .test-card:hover,
.book-page .test-card.is-selected {
  border-color: rgba(204, 34, 41, 0.35);
  border-top-color: var(--theme-red);
  box-shadow: 0 20px 42px rgba(0, 70, 173, 0.14);
}

.book-page .card-kicker {
  color: var(--theme-red);
}

.book-page .test-card h2 {
  color: var(--theme-blue);
}

.book-page .test-card p,
.book-page .booking-summary p:not(.eyebrow),
.contact-page .detail-item p,
.contact-page .contact-form label,
.contact-page .site-footer p {
  color: var(--theme-muted);
}

.book-page .booking-summary {
  border-color: rgba(204, 34, 41, 0.2);
  border-top: 4px solid var(--theme-red);
  background:
    linear-gradient(180deg, var(--theme-yellow-soft), #ffffff 42%);
  box-shadow: 0 22px 48px rgba(0, 70, 173, 0.14);
}

.book-page .booking-summary label {
  color: var(--theme-blue);
}

.book-page .btn-whatsapp,
.contact-page .btn-whatsapp,
.contact-page .floating-whatsapp,
.book-page .floating-whatsapp {
  background: var(--theme-red);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(204, 34, 41, 0.28);
}

.book-page .btn-whatsapp:hover,
.contact-page .btn-whatsapp:hover {
  background: var(--theme-blue);
}

.contact-page .contact-details,
.contact-page .contact-form {
  border-color: rgba(0, 70, 173, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 70, 173, 0.09);
}

.contact-page .contact-details {
  border-top: 4px solid var(--theme-yellow);
}

.contact-page .contact-form {
  border-top: 4px solid var(--theme-red);
}

.contact-page .detail-item {
  border-bottom-color: rgba(0, 70, 173, 0.12);
}

.contact-page .detail-item span {
  color: var(--theme-red);
}

.contact-page .contact-form label {
  color: var(--theme-blue);
}

.contact-page .package-band {
  border-color: rgba(204, 34, 41, 0.22);
  background:
    linear-gradient(135deg, #ffffff, var(--theme-yellow-soft));
  box-shadow: 0 18px 40px rgba(0, 70, 173, 0.08);
}

.contact-page .package-list span {
  border-color: rgba(0, 70, 173, 0.12);
  background: #ffffff;
  color: var(--theme-blue);
  box-shadow: inset 4px 0 0 var(--theme-red);
}

.book-page .site-footer,
.contact-page .site-footer {
  background: var(--theme-blue);
}

.book-page .site-footer h2,
.contact-page .site-footer h2 {
  color: var(--theme-yellow);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .hero,
  .split-section,
  .contact-layout,
  .booking-shell,
  .dynamic-strip,
  .insight-panel,
  .package-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .lab-photo {
    inset: 0 0 96px 0;
  }

  .hero-panel {
    right: 0;
  }

  .card-grid,
  .feature-grid,
  .team-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-summary {
    position: static;
  }

  .about-page .page-hero {
    margin-top: 28px;
    padding: 58px 28px 72px;
  }

  .about-page .page-hero::after {
    right: 28px;
    bottom: 42px;
    width: 112px;
  }

  .about-page .mission-band::after {
    width: 120px;
    opacity: 0.45;
  }

  .book-page .page-hero,
  .contact-page .page-hero {
    margin-top: 28px;
    padding: 56px 28px 72px;
  }

  .book-page .page-hero::after,
  .contact-page .page-hero::after {
    right: 28px;
    bottom: 42px;
    width: 112px;
  }

  .book-page .booking-tools {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .navbar,
  .hero,
  .section,
  .page-hero,
  .footer-grid {
    width: min(100% - 24px, 1120px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .card-grid,
  .feature-grid,
  .team-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mission-band,
  .cta-band,
  .dynamic-strip,
  .insight-panel,
  .package-band,
  .contact-details,
  .contact-form {
    padding: 24px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .about-page .page-hero {
    padding: 44px 22px 66px;
  }

  .about-page .page-hero h1 {
    font-size: 2.45rem;
  }

  .about-page .prose {
    padding: 22px;
  }

  .about-page .cta-band {
    gap: 18px;
  }

  .book-page .page-hero,
  .contact-page .page-hero {
    padding: 44px 22px 66px;
  }

  .book-page .page-hero h1,
  .contact-page .page-hero h1 {
    font-size: 2.35rem;
  }

  .book-page .booking-tools {
    padding: 18px;
  }

  .book-page .booking-summary {
    padding: 22px;
  }

  .contact-page .package-list {
    width: 100%;
  }
}

.brand-banner-page {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.brand-banner-page * {
  box-sizing: border-box;
}

.brand-red-bar {
  width: 100%;
  height: 4px;
  background: #cc2229;
}

.brand-banner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  background: #ffffff;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid #eeeeee;
}

.brand-logo-img {
  display: block;
  width: min(420px, 70vw);
  height: auto;
  object-fit: contain;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.brand-badges span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #cc2229;
  border-radius: 999px;
  color: #cc2229;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.brand-hero {
  margin: 0 calc(50% - 50vw);
  padding: 66px max(16px, calc((100vw - 1120px) / 2)) 62px;
  background: #fafafa;
  text-align: center;
}

.brand-quote,
.brand-quote-block p,
.brand-centered-quote p {
  margin: 0;
  color: #333333;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.brand-quote {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

.brand-subtext {
  margin: 18px auto 0;
  color: #777777;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-underline {
  display: block;
  width: 76px;
  height: 3px;
  margin: 24px auto 0;
  background: #cc2229;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 54px 0;
}

.brand-pillar-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid #eeeeee;
  border-top: 4px solid #cc2229;
  border-radius: 8px;
  background: #ffffff;
}

.brand-icon-circle {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fceaec;
  color: #cc2229;
  font-size: 0.85rem;
  font-weight: 700;
}

.brand-pillar-card h2 {
  margin: 0;
  color: #cc2229;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.brand-pillar-card p {
  margin: 12px 0 0;
  color: #666666;
  font-size: 0.96rem;
}

.brand-quote-block {
  margin-bottom: 50px;
  padding: 8px 0 8px 24px;
  border-left: 4px solid #cc2229;
}

.brand-quote-block p {
  max-width: 760px;
  font-size: clamp(1.25rem, 2.8vw, 1.8rem);
}

.brand-quote-block span {
  display: block;
  margin-top: 12px;
  color: #cc2229;
  font-size: 0.86rem;
  font-weight: 700;
}

.brand-stats-band {
  margin: 0 calc(50% - 50vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 34px max(16px, calc((100vw - 1120px) / 2));
  background: #cc2229;
  color: #ffffff;
  text-align: center;
}

.brand-stats-band div {
  display: grid;
  gap: 4px;
}

.brand-stats-band strong {
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.brand-stats-band span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-centered-quote {
  margin: 52px auto 0;
  padding: 34px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fafafa;
  text-align: center;
}

.brand-centered-quote p {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
}

.brand-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 34px 0 46px;
}

.brand-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: #cc2229;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-footer {
  margin: 0 calc(50% - 50vw);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 24px max(16px, calc((100vw - 1120px) / 2));
  background: #fafafa;
  color: #666666;
  text-align: center;
}

.brand-footer p {
  margin: 0;
  color: #666666;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 760px) {
  .brand-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-badges {
    justify-content: flex-start;
  }

  .brand-pillars,
  .brand-stats-band {
    grid-template-columns: 1fr;
  }

  .brand-stats-band {
    gap: 24px;
  }
}
