*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #2393ce;
  --aqua: #46c8be;
  --navy: #123044;
  --soft: #f3fbfd;
  --line: #dcebf1;
  --muted: #728698;
  --text: #40576a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--navy);
  background: var(--soft);
  line-height: 1.6;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 64px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
}

.nav-logo-sub {
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

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

.nav-links a:hover,
.footer-links a:hover,
.nav-links .active {
  color: var(--blue);
}

.nav-cta,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white !important;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 16px 5%;
  background: white;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 10px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 132px 5% 72px;
  background:
    radial-gradient(circle at top left, rgba(70, 200, 190, 0.18), transparent 34%),
    linear-gradient(135deg, white 0%, var(--soft) 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(35, 147, 206, 0.16);
  background: white;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero-copy {
  color: var(--text);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-panel,
.card,
.info-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(18, 48, 68, 0.08);
}

.hero-panel {
  padding: 24px;
}

.hero-panel img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

section {
  padding: 72px 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

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

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

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

.card {
  padding: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(35, 147, 206, 0.12), rgba(70, 200, 190, 0.18));
  font-weight: 700;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card p,
.list li,
.info-panel p {
  color: var(--text);
  font-size: 14px;
}

.list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 18px;
}

.doctor-card {
  padding: 0;
  overflow: hidden;
}

.doctor-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: linear-gradient(180deg, transparent 0%, #f7fcfe 100%);
}

.doctor-info {
  padding: 22px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 147, 206, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
}

.schedule-table th {
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
  text-align: left;
  font-size: 13px;
}

.schedule-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 18px;
}

.cta-band {
  padding: 56px 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--aqua));
  color: white;
}

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

.cta-band .btn-primary {
  background: white;
  color: var(--blue) !important;
}

footer {
  padding: 48px 5% 24px;
  background: #10293a;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.footer-brand-name {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero-inner,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
