:root {
  --bg: #f7f9fc;
  --white: #ffffff;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #eaf2ff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fc;
  flex-shrink: 0;
}

.logo-mark img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937c2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.25s ease;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: white;
  padding: 18px 20px 24px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--text);
  font-weight: 500;
}

.mobile-cta {
  margin-top: 12px;
  width: 100%;
}

.hero {
  padding: 76px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
}

.hero::before {
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.08);
  top: -60px;
  left: -60px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.12);
  right: -80px;
  bottom: 10px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 48px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 12ch;
}

.hero-content p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-visual {
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}

.hero-image-card {
  position: relative;
  background: white;
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow);
  width: 100%;
  margin-top: 0;
}

.hero-image-card img {
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  max-width: 240px;
}

.floating-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.top-card {
  top: 34px;
  left: -28px;
}

.bottom-card {
  right: -24px;
  bottom: 34px;
}

.section {
  padding: 96px 0;
}

.section-heading {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 54px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.simple-section-title {
  text-align: center;
  margin: 0 auto 30px;
}

.simple-section-title h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

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

.doctor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
}

.doctor-card img {
  height: 320px;
  object-fit: cover;
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.doctor-info span {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.doctor-info p {
  color: var(--muted);
  margin-bottom: 18px;
}

.doctor-info a {
  color: var(--primary);
  font-weight: 700;
}

.employees-section {
  padding-top: 24px;
}

.services {
  background: linear-gradient(to bottom, #f7f9fc, #eef4ff);
}

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: justify;
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.hours-section {
  background: var(--bg);
}

.hours-card {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
}

.hours-row .time {
  font-weight: 600;
  text-align: center;
}

.muted-row .day,
.muted-row .time {
  color: #94a3b8;
}

.cta-box {
  background: linear-gradient(135deg, #ffffff, #edf4ff);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-box p {
  color: var(--muted);
  max-width: 56ch;
}

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.88);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer h3 {
  color: white;
  margin-bottom: 8px;
}

.footer-details p {
  margin-bottom: 6px;
}

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

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

  .hero-content,
  .hero-visual {
    grid-column: 1 / -1;
  }

  .hero-image-card img {
    height: 520px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 76px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero {
    padding: 48px 0 72px;
  }

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

  .hero-content h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    max-width: 11ch;
  }

  .hero-image-card img {
    height: 420px;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .hero-image-card {
    padding-bottom: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }

  .hours-row .time {
    text-align: left;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .logo-text strong {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
section {
  scroll-margin-top:120px;
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

