﻿:root {
  --teal: #047f98;
  --teal-dark: #075f72;
  --orange: #f79a37;
  --ink: #17252b;
  --muted: #5d6b72;
  --line: #e4ecef;
  --soft: #f5fafb;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 95, 114, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(23, 37, 43, 0.06);
}

.brand img {
  display: block;
  width: min(310px, 42vw);
  height: auto;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

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

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call svg,
.btn svg,
.site-footer svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.header-call,
.btn.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(4, 127, 152, 0.2);
}

.header-call:hover,
.btn.primary:hover {
  background: var(--teal-dark);
}

.btn.secondary {
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

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

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

.hero {
  min-height: calc(100vh - 84px);
  padding: clamp(58px, 8vw, 110px) 0 64px;
  background:
    linear-gradient(115deg, rgba(245, 250, 251, 0.85), rgba(255, 255, 255, 0.6)),
    radial-gradient(circle at 88% 18%, rgba(247, 154, 55, 0.13), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
}

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

.hero-panel {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 78px;
  height: 6px;
  background: var(--orange);
  border-radius: 999px;
}

.hero-panel img {
  display: block;
  width: 100%;
  margin: 34px 0 36px;
}

.doctor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.doctor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: var(--teal-dark);
  background: rgba(247, 154, 55, 0.16);
  border-radius: 8px;
}

.icon-badge svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

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

.split-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 880px);
  gap: clamp(22px, 5vw, 80px);
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 800;
}

.section-label svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.section-content h2,
.section-heading h2,
.hospital h2,
.contact h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-content p,
.hospital-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.care-band {
  padding: 92px 0;
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.service-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  min-height: 238px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.4;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.hospital {
  padding: 92px 0;
  background: var(--white);
}

.hospital-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hospital-copy {
  max-width: 670px;
}

.hospital-copy h2 {
  margin-bottom: 18px;
}

.hospital-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hospital-info > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 26px;
  background: var(--white);
}

.hospital-info > div + div {
  border-top: 1px solid var(--line);
}

.hospital-info small {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hospital-info a {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.15;
}

.hospital-info p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  padding: 92px 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 410px);
  gap: 18px;
  align-items: stretch;
}

.contact-card,
.address-card {
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  border-radius: 8px;
}

.address-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.address-card .icon-badge {
  margin-bottom: 18px;
}

.address-card h3 {
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 1.45rem;
}

.address-card p {
  color: var(--muted);
  line-height: 1.7;
}

.address-card a {
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer {
  background: #f8fbfc;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(170px, 0.6fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 52px 0 34px;
}

.footer-brand img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 1rem;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: var(--teal-dark);
  font-weight: 800;
}

.footer-contact a,
.footer-contact p,
.footer-bottom a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
}

.footer-contact svg,
.footer-bottom svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--teal);
  stroke-width: 2.3;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 930px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: min(260px, 66vw);
  }

  .nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .nav a {
    padding: 17px 22px;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .split-grid,
  .hospital-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner {
    width: calc(100% - 32px);
  }

  .header-inner {
    padding: 14px 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  .section,
  .care-band,
  .hospital,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn,
  .header-call {
    width: 100%;
  }

  .doctor-card,
  .hospital-info > div {
    align-items: flex-start;
  }
}




