:root {
  --ink: #102a33;
  --muted: #5f7278;
  --line: #d7e2e5;
  --paper: #f5f8f8;
  --white: #ffffff;
  --teal: #138da6;
  --teal-dark: #096275;
  --lime: #9bea22;
  --navy: #173244;
  --coral: #e66f51;
  --shadow: 0 18px 55px rgba(16, 42, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

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

button,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(16, 42, 51, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.78);
}

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

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

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
}

.lang-button {
  min-width: 42px;
  min-height: 38px;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
}

.lang-button.is-active {
  color: #102a14;
  background: var(--lime);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: #102a14;
  background: var(--lime);
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 35, 45, 0.88), rgba(10, 35, 45, 0.56) 48%, rgba(10, 35, 45, 0.18)),
    linear-gradient(0deg, rgba(10, 35, 45, 0.7), rgba(10, 35, 45, 0.04) 48%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 56px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 5.35rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.16rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #102a14;
  background: var(--lime);
}

.button-primary:hover {
  background: #b8ff42;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  border-color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin: 54px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.trust-strip dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.quick-contact a {
  padding: 22px clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-contact strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

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

.intro-grid,
.section-heading,
.warranty,
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
}

.intro-copy h2,
.section-heading h2,
.media-copy h2,
.team h2,
.warranty h2,
.faq h2,
.contact-panel h2 {
  margin: 0;
  font-size: 3.3rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.media-copy p,
.team .section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.proof-cards {
  display: grid;
  gap: 14px;
}

.proof-cards article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-cards strong,
.proof-cards span {
  display: block;
}

.proof-cards span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.services {
  width: min(1200px, calc(100% - 40px));
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  margin-top: 34px;
}

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

.service-card {
  min-height: 132px;
  padding: 22px;
  text-align: left;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.service-card.is-selected {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.service-card span {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
}

.service-card small {
  display: block;
  margin-top: 10px;
  color: currentColor;
  opacity: 0.74;
  line-height: 1.45;
}

.planner {
  position: sticky;
  top: 96px;
  padding: 26px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.planner h3 {
  margin: 0 0 22px;
  font-size: 1.55rem;
}

.planner label {
  display: block;
  margin: 16px 0 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.planner select,
.planner textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.planner select {
  height: 46px;
  padding: 0 12px;
}

.planner textarea {
  padding: 12px;
  resize: vertical;
}

.planner-mail {
  width: 100%;
  margin-top: 18px;
}

.fineprint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.media-band {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: center;
  padding: 70px clamp(20px, 5vw, 70px);
  color: var(--white);
  background: var(--teal-dark);
}

.media-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img:first-child {
  grid-row: 1 / span 2;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.team-card {
  min-height: 280px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.team-card img {
  width: 128px;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 18px;
  background: var(--white);
  border-radius: 8px;
}

.team-card h3 {
  margin: 0;
}

.team-card p {
  margin: 8px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.team-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.team-card-featured {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.team-card-featured img {
  width: 150px;
  margin: 0;
}

.team-card-featured p,
.team-card-featured span {
  color: rgba(255, 255, 255, 0.78);
}

.warranty {
  width: min(1200px, calc(100% - 40px));
}

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

.warranty-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.warranty-grid span {
  display: block;
  color: var(--coral);
  font-size: 2rem;
  font-weight: 900;
}

.warranty-grid h3 {
  margin: 16px 0 0;
}

.warranty-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

details {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  padding: 84px 20px 120px;
  background: var(--navy);
}

.contact-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 50, 68, 0.96), rgba(23, 50, 68, 0.82)),
    url("assets/doctor-booking.webp") right center / contain no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 22px;
  margin-top: 34px;
}

.contact-grid span {
  color: var(--coral);
  font-weight: 900;
}

.contact-grid p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

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

.mobile-sticky {
  display: none;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .media-copy h2,
  .team h2,
  .warranty h2,
  .faq h2,
  .contact-panel h2 {
    font-size: 2.55rem;
  }

  .quick-contact,
  .intro-grid,
  .section-heading,
  .service-layout,
  .media-band,
  .warranty,
  .faq,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .planner {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img {
    width: 150px;
  }

  .icon-link {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(10, 35, 45, 0.92), rgba(10, 35, 45, 0.46)),
      linear-gradient(90deg, rgba(10, 35, 45, 0.66), rgba(10, 35, 45, 0.1));
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 76px 0 36px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .intro-copy h2,
  .section-heading h2,
  .media-copy h2,
  .team h2,
  .warranty h2,
  .faq h2,
  .contact-panel h2 {
    font-size: 2.08rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-strip,
  .service-list,
  .warranty-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 32px);
    padding: 68px 0;
  }

  .services,
  .warranty {
    width: calc(100% - 32px);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .team-card-featured {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding-bottom: 100px;
  }

  .contact-panel {
    background: var(--navy);
  }

  .mobile-sticky {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }

  .mobile-sticky a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 8px;
    color: var(--white);
    background: var(--teal-dark);
    font-weight: 900;
  }

  .mobile-sticky a:last-child {
    color: #102a14;
    background: var(--lime);
  }
}
