:root {
  --blue: #0a4ea3;
  --blue-2: #0d6ec7;
  --navy: #061b3a;
  --soft-blue: #eaf5ff;
  --ice: #f7fbff;
  --text: #1f344d;
  --muted: #64748b;
  --border: #d8e9fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 27, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f5faff 50%, #ffffff 100%);
  color: var(--text);
}

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

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: var(--blue-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.02;
  color: var(--navy);
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin: 0 0 16px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  margin: 0 0 10px;
}

.lead, .section-heading p, .doctor-text p, .contact-section p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

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

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 12px 28px rgba(10, 78, 163, 0.25);
}

.secondary {
  color: var(--blue);
  background: var(--soft-blue);
  border: 1px solid var(--border);
}

.badges {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badges span {
  padding: 9px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}

.hero-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: white;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(10,78,163,0.12), transparent 45%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  display: block;
}

.poster-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 22px 54px;
}

.poster-section img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: block;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 22px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(6, 27, 58, 0.07);
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 230px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
}

.service-card div {
  padding: 24px;
}

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

.doctor-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
  border-radius: 34px;
  border: 1px solid var(--border);
}

.doctor-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
}

.doctor-image img {
  width: 100%;
  display: block;
}

.doctor-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.doctor-points div {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.doctor-points strong {
  display: block;
  color: var(--blue);
  margin-bottom: 4px;
}

.doctor-points span {
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(6, 27, 58, 0.08);
  background: white;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.contact-card {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: rgba(255,255,255,0.85);
  margin: 0 0 10px;
}

.full {
  width: 100%;
  margin-top: 14px;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 22px 46px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 14px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .doctor-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

  .service-card img {
    height: 260px;
  }

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

@media (max-width: 520px) {
  .hero {
    padding-top: 44px;
  }

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

  .brand img {
    height: 38px;
  }
}
