.hero-block {
  padding: 3rem 0 6rem;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-media picture,
.hero-bg-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg-media img {
  object-fit: cover;
  object-position: center 42%;
  filter: none;
  transform: scale(1.02);
}

.hero-bg-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 52, 68, 0.35) 0%, rgba(8, 52, 68, 0.5) 55%, rgba(13, 79, 106, 0.62) 100%),
    linear-gradient(135deg, rgba(13, 79, 106, 0.25), rgba(24, 167, 184, 0.12));
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-brand h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-brand p {
  margin: 1.2rem auto 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 600;
}

.booking-strip {
  margin: 3.5rem auto 0;
  border-radius: var(--radius-pill);
  padding: 0.95rem 1.2rem;
  width: min(1130px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.booking-strip.glass-mode {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.strip-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.strip-field:last-of-type {
  border-left: none;
}

.strip-field label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #58b9c4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strip-field select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  padding: 0;
  font-family: inherit;
  width: 100%;
}

.strip-field select option {
  background: #149daf;
  color: white;
}

.strip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-booking-mobile {
  display: none;
  margin-top: 1.35rem;
}

.hero-booking-mobile__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #f0c56a);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(231, 177, 78, 0.38);
}

.hero-booking-mobile p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 600;
}

.strip-cta:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(231, 177, 78, 0.4);
}

.centers-section,
.health-info-section,
.about-section,
.doctors-strip,
.contact-block {
  padding: 3.5rem 0;
}

.health-info-section {
  background: linear-gradient(180deg, #f7fcfd 0%, #fff 100%);
}

.centers-section h2,
.health-info-section h2,
.about-section h2,
.doctors-strip h2,
.contact-card h2 {
  text-align: center;
  margin: 0 0 1.8rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
}

.centers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.center-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.center-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 72, 96, 0.18);
}

.center-visual {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.center-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  transition: transform 0.6s ease;
}

.center-card:hover .center-visual img {
  transform: scale(1.1);
}

.center-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 79, 106, 0.3));
}

.center-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.center-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.center-content p {
  margin: 0;
  color: #527184;
  font-size: 0.95rem;
  line-height: 1.6;
}

.center-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.center-actions .link-btn {
  min-height: 42px;
  padding-inline: 1.05rem;
}

@media (min-width: 981px) {
  .page-services .page-body {
    background: linear-gradient(180deg, #f6fafb 0%, #ffffff 42%);
  }

  .page-services .centers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 940px;
    margin: 0 auto;
    gap: 1rem;
  }

  .page-services .center-card {
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(8, 72, 96, 0.1);
  }

  .page-services .center-visual {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    margin: 0.75rem 0.75rem 0;
    width: calc(100% - 1.5rem);
  }

  .page-services .center-content {
    padding: 1.1rem 1.15rem 1.25rem;
    text-align: center;
    align-items: center;
  }

  .page-services .center-content h3 {
    font-size: 1.18rem;
  }

  .page-services .center-content p {
    min-height: 3.1em;
  }

  .page-services .center-actions {
    justify-content: center;
  }
}

.health-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 15px 32px rgba(239, 83, 72, 0.2);
}

.health-callout h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
}

.health-callout p {
  margin: 0;
  line-height: 1.85;
  max-width: 58ch;
}

.health-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.health-tip-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.health-tip-visual img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.health-tip-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 1rem 1.1rem 1.15rem;
}

.health-tip-body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.5;
}

.health-tip-body p {
  margin: 0;
  color: #527184;
  line-height: 1.85;
  font-size: 0.95rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-story h3,
.about-pillars h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.45rem;
}

.about-story p {
  margin: 0 0 1rem;
  color: #527184;
  line-height: 2;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-mission-card {
  background: #f3fbfc;
  border: 1px solid #d8eef2;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.about-mission-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--teal-deep);
  font-size: 1.05rem;
}

.about-mission-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-gallery {
  display: grid;
  gap: 0.85rem;
}

.about-photo {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-photo--main img {
  height: 240px;
}

.about-photo:not(.about-photo--main) img {
  height: 150px;
}

.about-photo figcaption {
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
  color: #527184;
  background: #f8fcfd;
  border-top: 1px solid #e8f2f5;
}

.about-pillars {
  margin-bottom: 2rem;
}

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

.about-pillar {
  background: #f8fcfd;
  border: 1px solid #e3f1f4;
  border-radius: var(--radius-md);
  padding: 1.1rem;
}

.about-pillar-icon {
  display: inline-flex;
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.about-pillar strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.about-pillar p {
  margin: 0;
  color: #527184;
  font-size: 0.93rem;
  line-height: 1.8;
}

.about-quote {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #168ca0, #1aa8b6);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.14);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.leader-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.leader-card strong {
  display: block;
  font-size: 1.2rem;
}

.leader-card span {
  opacity: 0.9;
  font-size: 0.92rem;
}

.about-quote blockquote {
  margin: 0;
  background: rgba(0, 0, 0, 0.12);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  line-height: 2;
  font-size: 1.15rem;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.doctors-more {
  margin-top: 1.75rem;
}

.doctors-more a {
  color: var(--teal-deep);
  font-weight: 800;
}

.home-mobile-strip,
.home-mobile-bar {
  display: none;
}

.doctor-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.doctor-card:hover {
  transform: translateY(-10px);
}

.doctor-visual {
  height: 300px;
  background: linear-gradient(180deg, #e8f6f8, #cceef3);
  position: relative;
  overflow: hidden;
}

.doctor-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s ease;
}

.doctor-card:hover .doctor-visual img {
  transform: scale(1.08);
}

.doctor-content {
  padding: 1.8rem;
  text-align: center;
  background: #fff;
  position: relative;
  z-index: 2;
}

.doctor-content h3 {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 1.4rem;
}

.specialty-label {
  color: var(--teal);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.doctor-bio {
  font-size: 0.9rem;
  color: #6a8ba0;
  line-height: 1.5;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.doctor-card:hover .doctor-bio {
  height: auto;
  opacity: 1;
  margin-top: 0.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-map {
  margin-top: 1rem;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.contact-card,
.quick-form {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.contact-card p,
.contact-card li,
#formStatus {
  color: #4f6e7e;
  line-height: 1.9;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
}

.quick-form {
  display: grid;
  gap: 0.45rem;
}

.quick-form label {
  font-weight: 800;
  color: var(--ink);
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  border: 1px solid #cae1e6;
  border-radius: 10px;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  background: #f9fcfd;
}

.quick-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quick-form button {
  border: 0;
  border-radius: var(--radius-pill);
  min-height: 44px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}

/* Premium Auth Modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(13, 79, 106, 0.45); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.is-active { display: flex; opacity: 1; }

.modal-panel {
  width: min(480px, 100%);
  background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px; box-shadow: 0 40px 100px rgba(8, 72, 96, 0.25);
  overflow: hidden; position: relative;
  transform: scale(0.92); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.is-active .modal-panel { transform: scale(1); }

.modal-header {
  padding: 1.5rem 1.5rem 0.5rem; display: flex; justify-content: space-between; align-items: flex-start;
}
.close-auth-x {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-size: 1.4rem; cursor: pointer;
  display: grid; place-items: center; transition: 0.2s;
}
.close-auth-x:hover { background: var(--bg); transform: rotate(90deg); }

.modal-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 0 2rem 1rem; gap: 0.5rem; }
.modal-tab {
  border: 0; background: transparent; padding: 0.85rem; font-weight: 800; color: var(--muted);
  cursor: pointer; border-radius: 14px; transition: 0.3s; font-size: 1.05rem;
}
.modal-tab.is-active { background: var(--teal-deep); color: #fff; box-shadow: 0 10px 20px rgba(11, 90, 114, 0.15); }

.modal-body { padding: 0 2rem 2.5rem; }
.auth-form { display: grid; gap: 0.6rem; }
.auth-form.is-hidden { display: none; }

.auth-form h3 { font-size: 1.8rem; color: var(--ink); margin-bottom: 0.2rem; text-align: center; }
.auth-form p { color: #527184; font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.6; text-align: center; }

.input-group { position: relative; margin-bottom: 0.4rem; }
.input-group input {
  width: 100%; height: 56px; border: 1px solid #d8e5e8; border-radius: 16px; 
  padding: 0 1rem; background: #fff; transition: 0.25s; font-size: 1rem;
}
.input-group input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(24, 167, 184, 0.1); outline: none; }

.btn-auth {
  height: 56px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-size: 1.15rem; font-weight: 800; border: 0; border-radius: 16px;
  cursor: pointer; box-shadow: 0 15px 35px rgba(24, 167, 184, 0.2); transition: 0.3s;
  margin-top: 0.8rem;
}
.btn-auth:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(24, 167, 184, 0.3); }

.auth-status { text-align: center; font-size: 0.9rem; font-weight: 700; min-height: 1.4rem; padding-top: 0.4rem; }

@media (max-width: 640px) {
  .modal-panel { width: 100%; border-radius: 30px 30px 0 0; position: fixed; bottom: 0; margin: 0; }
}

.socials {
  margin-top: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.side-book {
  position: fixed;
  left: 0;
  top: 200px;
  z-index: 30;
  min-height: 40px;
  padding: 0 1.3rem;
  border-radius: 0 999px 999px 0;
  background: #2f6272;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.side-actions {
  position: fixed;
  left: 14px;
  top: 330px;
  z-index: 30;
  display: grid;
  gap: 0.5rem;
}

.side-actions a,
.to-top {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.1rem;
}

.to-top {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 30;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 0.8rem;
  }

  .main-nav a,
  .strip-field span {
    font-size: 1rem;
  }

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

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

  .booking-strip {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding: 0.85rem;
  }

  .strip-cta {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(320px, 100%);
  }

  .strip-field {
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }
}

@media (max-width: 980px) {
  .nav-row {
    position: relative;
    z-index: 1001;
  }

  .nav-wrap {
    min-height: 50px;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    inset-inline: 0;
    width: auto;
    padding: 0.45rem 0.85rem 0.85rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e8f2f5;
    box-shadow: 0 18px 36px rgba(8, 72, 96, 0.14);
    backdrop-filter: blur(10px);
    z-index: 2000;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: grid !important;
    gap: 0.15rem;
  }

  .main-nav a {
    padding: 0.8rem 0.7rem;
    border-bottom: 1px solid #eef4f6;
    border-radius: 10px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 860px) {
  .util-row {
    min-height: 72px;
  }

  .brand-lockup strong {
    font-size: 1.6rem;
  }

  .health-tips-grid,
  .about-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .about-mission-grid,
  .about-quote,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hero-block {
    min-height: calc(100svh - 126px);
    min-height: calc(100dvh - 126px);
    padding: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }

  .hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0.75rem;
  }

  .hero-brand h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }

  .hero-brand p {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .booking-strip {
    display: none;
  }

  .hero-booking-mobile {
    display: block;
    margin-top: 1rem;
  }

  .home-mobile-strip {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding: 0.85rem 0 1rem;
    background: linear-gradient(180deg, rgba(8, 52, 68, 0) 0%, rgba(8, 52, 68, 0.72) 100%);
  }

  .home-mobile-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .mobile-chip {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 0.35rem;
    font-size: 0.74rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .mobile-chip span {
    font-size: 0.95rem;
  }

  .util-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .util-actions {
    gap: 0.4rem;
  }

  .chip {
    font-size: 0.82rem;
    padding: 0 0.75rem;
    height: 30px;
  }

  .search-btn {
    width: 34px;
    height: 34px;
  }

  .brand-lockup img {
    width: 52px;
    height: 52px;
  }

  .hero-bg-media img {
    object-position: center 38%;
    transform: none;
  }

  .brand-lockup strong {
    font-size: 1.35rem;
  }

  .centers-section,
  .health-info-section,
  .about-section,
  .doctors-strip,
  .contact-block {
    padding: 2.4rem 0;
  }

  .centers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .mobile-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(207, 225, 230, 0.95);
    box-shadow: 0 8px 20px rgba(8, 72, 96, 0.12);
    color: var(--teal-deep);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-chip--gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }

  .home-mobile-bar {
    display: flex;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid #dbe9ee;
    box-shadow: 0 -10px 30px rgba(8, 72, 96, 0.1);
    backdrop-filter: blur(12px);
  }

  .home-mobile-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), #f0c56a);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(231, 177, 78, 0.35);
  }

  .home-page .side-actions {
    display: none;
  }

  .home-page .site-footer {
    padding-bottom: 5rem;
  }

  .health-tips-grid,
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .health-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-photo--main img {
    height: 200px;
  }

  .side-book {
    display: none;
  }

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

  .doctor-visual {
    height: 260px;
  }
}

.booking-cta {
  padding: 2.5rem 0;
}

.booking-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #0b5a72, #18a7b8);
  color: #fff;
  box-shadow: var(--shadow);
}

.booking-cta__inner h2 {
  margin: 0.6rem 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.booking-cta__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.6rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #4f3d18;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section-intro h2 {
  margin-top: 1rem;
}

.section-intro p,
.section-copy {
  color: #527184;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.8;
}

.home-specialty-card__actions .link-btn {
  margin-top: auto;
  align-self: flex-start;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--teal-deep);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  box-shadow: none;
}

.home-specialty-card__actions .link-btn:hover {
  transform: none;
  box-shadow: none;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.doctor-hint,
.slot-preview {
  margin: 0.25rem 0 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #f4fafc;
  border: 1px dashed #cfe1e6;
  color: #527184;
  line-height: 1.7;
  font-size: 0.92rem;
}

.contract-field {
  display: none;
}

.contract-field.is-visible {
  display: block;
}

.btn-booking {
  background: var(--gold);
  color: #4f3d18;
  padding: 1rem;
  font-size: 1.05rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 0;
  font-weight: 800;
}

.form-status {
  text-align: center;
  margin-top: 0.5rem;
  min-height: 1.5rem;
}

.contact-list-plain {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  line-height: 1.9;
}

.alert-tile--static {
  position: static;
  transform: none;
  width: 100%;
  padding: 1rem;
  background: var(--teal-deep);
  color: #fff;
}

.contact-block--footer {
  padding-top: 0;
}

.socials--large {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.socials--large a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: var(--radius-pill);
  background: #eef7f9;
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: none;
}

.footer-sub {
  display: block;
  margin-top: 0.35rem;
  color: #d7ebf0;
  font-size: 0.92rem;
}

.about-teaser {
  padding: 2.8rem 0;
  background: linear-gradient(135deg, #0b5a72, #18a7b8);
  color: #fff;
}

.about-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.about-teaser__inner h2 {
  margin: 0.65rem 0 0.4rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-teaser__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 52ch;
}

.about-teaser__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 14px;
  background: #fff;
  color: var(--teal-deep);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .booking-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-cta__btn {
    width: 100%;
  }

  .about-teaser__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-teaser__btn {
    width: 100%;
  }
}
