:root {
  --ink: #153b3b;
  --muted: #5f7775;
  --line: #d8ece8;
  --soft: #e9fbf7;
  --soft-2: #f6fffd;
  --brand: #0d766e;
  --brand-2: #13a89e;
  --accent: #dbf7ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 118, 110, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--soft-2);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: var(--brand);
  color: var(--white);
  font-size: 14px;
}

.top-strip .container {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 76px;
  height: auto;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 13px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  background: var(--accent);
  color: var(--brand);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--brand);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(13, 118, 110, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  background: var(--brand-2);
  box-shadow: 0 16px 32px rgba(13, 118, 110, 0.26);
  transform: translateY(-2px);
}

.btn.secondary {
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.ghost {
  color: var(--brand);
  background: var(--accent);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  width: 44px;
  padding: 0;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand);
}

.top-visual-slider {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: var(--white);
  background: var(--brand);
}

.visual-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.visual-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

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

.visual-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 65, 61, 0.93), rgba(8, 65, 61, 0.62) 48%, rgba(8, 65, 61, 0.18));
}

.visual-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 90px;
}

.visual-copy h1,
.visual-copy h2 {
  margin-top: 18px;
  font-size: clamp(40px, 7vw, 72px);
}

.visual-copy p {
  max-width: 590px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  transform: translateX(-50%);
  gap: 8px;
}

.slider-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(9, 79, 74, 0.96) 0%, rgba(9, 79, 74, 0.78) 42%, rgba(9, 79, 74, 0.18) 76%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--soft-2), rgba(246, 255, 253, 0));
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: inherit;
  align-items: center;
  padding: 86px 0 120px;
}

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

.doctor-profile-section {
  padding: 58px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(19, 168, 158, 0.12), transparent 30%),
    linear-gradient(180deg, var(--soft-2), var(--white));
}

.doctor-profile-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 46px;
}

.doctor-photo-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.doctor-photo-card img {
  width: 100%;
  height: 520px;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  background: var(--soft);
}

.profile-chip {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border-radius: var(--radius);
  padding: 16px;
  color: var(--white);
  background: rgba(13, 118, 110, 0.94);
  box-shadow: 0 18px 36px rgba(7, 45, 42, 0.22);
}

.profile-chip strong {
  display: block;
  font-size: 18px;
}

.profile-chip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.doctor-profile-copy h2 {
  margin-top: 14px;
}

.profile-lead {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
}

.doctor-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.doctor-badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 118, 110, 0.08);
}

.doctor-badge strong {
  display: block;
  color: var(--brand);
  font-size: 20px;
  line-height: 1.1;
}

.doctor-badge span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.profile-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 20px;
}

.profile-highlights span {
  border-left: 4px solid var(--brand-2);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section .eyebrow,
.page-intro .eyebrow {
  color: var(--brand);
  border-color: var(--line);
  background: var(--accent);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.hero-lead {
  max-width: 590px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-slider {
  position: relative;
  max-width: 590px;
  min-height: 86px;
  margin: 20px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-slide {
  display: none;
  animation: slideFade 620ms ease both;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.1;
}

.hero-slide span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

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

.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin-top: 34px;
  gap: 12px;
}

.hero-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-pill strong {
  display: block;
  font-size: 22px;
}

.hero-pill span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

.section.white {
  background: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.info-card,
.service-card,
.doctor-card,
.timeline-item,
.contact-card,
.form-panel,
.timing-card,
.mini-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}

.info-card img {
  width: 54px;
  margin-bottom: 18px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p,
.service-card p,
.doctor-card p,
.timeline-item p,
.contact-card p,
.form-panel p,
.timing-card p,
.page-intro p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 46px;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
}

.floating-note span {
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 0 5px var(--accent);
}

.service-card {
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(13, 118, 110, 0.18);
}

.service-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
}

.service-body {
  padding: 22px;
}

.service-body h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.service-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 800;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 118, 110, 0.96), rgba(19, 168, 158, 0.86)),
    url("../img/background-effect-5.jpg") center/cover;
}

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

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  margin-top: 10px;
}

.page-hero {
  --hero-image: url("../img/slide2.jpg");
  min-height: 410px;
}

.page-hero .container {
  padding-bottom: 84px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.page-intro {
  padding: 44px 0 0;
}

.doctor-card {
  padding: 28px;
}

.doctor-card + .doctor-card {
  margin-top: 18px;
}

.doctor-card h3 {
  margin-bottom: 14px;
}

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

.membership-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--muted);
  background: var(--soft-2);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 22px;
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
}

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

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

.service-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--brand);
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

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

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-head img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent);
}

.review-head strong {
  display: block;
}

.review-head span,
.review-card p {
  color: var(--muted);
}

.stars {
  color: #d99a00;
  font-weight: 900;
  margin-bottom: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.timing-card {
  overflow: hidden;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--white);
  background: var(--brand);
}

td {
  background: var(--white);
}

tr:nth-child(even) td {
  background: var(--soft-2);
}

.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.clinic-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
}

.clinic-card strong {
  display: block;
  margin-bottom: 6px;
}

.form-panel {
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--soft-2);
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-2);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(19, 168, 158, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

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

.contact-card {
  padding: 22px;
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--brand);
  font-weight: 800;
}

.footer {
  color: var(--white);
  background: #0f4c48;
  padding: 62px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  margin-bottom: 14px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.mini-form {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.mini-form .field input,
.mini-form .field textarea {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.mini-form .field input::placeholder,
.mini-form .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 35;
}

.bottom-nav {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 18% 12%, rgba(19, 168, 158, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(7, 45, 42, 0.82), rgba(9, 79, 74, 0.72));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  backdrop-filter: blur(10px);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  width: min(920px, 100%);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--white), var(--soft-2));
  box-shadow: 0 28px 80px rgba(7, 45, 42, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
  overflow: hidden;
}

.modal-backdrop.is-open .modal-panel {
  transform: none;
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
}

.modal-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--brand);
}

.modal-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.modal-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 65, 61, 0.16), rgba(8, 65, 61, 0.92));
}

.modal-visual-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 28px;
}

.modal-visual-content h3 {
  font-size: 30px;
}

.modal-visual-content p,
.modal-visual-list li {
  color: rgba(255, 255, 255, 0.84);
}

.modal-visual-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-visual-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.modal-visual-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
}

.modal-form-wrap {
  position: relative;
  padding: 28px;
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}

.modal-head p {
  color: var(--muted);
  margin-top: 6px;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  background: var(--soft);
  cursor: pointer;
  font-size: 22px;
}

.modal-panel form {
  padding: 20px 0 0;
}

.modal-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 14px;
}

.modal-note strong {
  color: var(--brand);
}

.modal-panel .btn {
  width: 100%;
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-visual {
    min-height: 230px;
  }

  .nav a {
    border-radius: var(--radius);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .header-actions .desktop-only {
    display: none;
  }

  .hero {
    min-height: 570px;
  }

  .top-visual-slider {
    min-height: 560px;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(9, 79, 74, 0.94), rgba(9, 79, 74, 0.72)),
      var(--hero-image);
  }

  .hero-pills,
  .grid.three,
  .services-page-grid,
  .home-services-grid,
  .reviews-grid,
  .clinic-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.two,
  .split,
  .contact-grid,
  .doctor-profile-grid {
    grid-template-columns: 1fr;
  }

  .doctor-photo-card img {
    height: 520px;
  }

  .section-head,
  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 78px;
  }

  .top-strip {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 62px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand span {
    font-size: 11px;
  }

  .hero {
    min-height: 620px;
  }

  .top-visual-slider {
    min-height: 540px;
  }

  .visual-slide::after {
    background: linear-gradient(180deg, rgba(8, 65, 61, 0.88), rgba(8, 65, 61, 0.74));
  }

  .visual-copy {
    padding: 58px 0 86px;
  }

  .visual-copy h1,
  .visual-copy h2 {
    font-size: 40px;
  }

  .hero .container {
    padding: 66px 0 98px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .doctor-profile-section {
    padding: 42px 0;
  }

  .doctor-photo-card img {
    height: 430px;
  }

  .doctor-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .doctor-badge {
    padding: 12px 8px;
  }

  .doctor-badge strong {
    font-size: 18px;
  }

  .doctor-badge span {
    font-size: 11px;
  }

  .profile-chip {
    position: static;
    margin-top: 12px;
  }

  .modal-backdrop {
    align-items: start;
    overflow-y: auto;
    padding: 14px;
  }

  .modal-form-wrap {
    padding: 22px;
  }

  .modal-visual {
    min-height: 150px;
  }

  .modal-visual-content {
    min-height: 150px;
    gap: 8px;
    padding: 16px;
  }

  .modal-visual-content h3 {
    font-size: 22px;
  }

  .modal-visual-content p {
    font-size: 14px;
    line-height: 1.45;
  }

  .modal-visual-list {
    display: none;
  }

  .modal-panel form {
    padding-top: 14px;
  }

  .modal-panel .field textarea {
    min-height: 86px;
  }

  .modal-note {
    margin-top: 12px;
    padding: 10px;
    font-size: 13px;
  }

  .hero-slider {
    min-height: 96px;
    padding: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .form-grid,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 92px;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 34;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -12px 28px rgba(13, 118, 110, 0.12);
    backdrop-filter: blur(18px);
  }

  .bottom-nav a,
  .bottom-nav button {
    min-height: 66px;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    display: grid;
    place-items: center;
    gap: 3px;
    padding: 7px 2px 8px;
  }

  .bottom-nav .nav-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--brand);
    background: var(--accent);
  }

  .bottom-nav svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .bottom-nav a:hover .nav-icon,
  .bottom-nav button:hover .nav-icon {
    color: var(--white);
    background: var(--brand);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
