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

:root {
  --blue:       #2B4DFF;
  --blue-2:     #2562FF;
  --blue-dk:    #1C266A;
  --blue-lt:    #4a68ff;
  --blue-pale:  #eef2ff;
  --blue-pale2: #dde4ff;
  --navy:       #1C266A;
  --navy-dk:    #131a4d;
  --ink:        #1C266A;
  --ink2:       #2d3970;
  --muted:      #6b7a99;
  --light:      #f5f6f7;
  --light2:     #eceef0;
  --white:      #ffffff;
  --border:     #e3e5ea;
  --green:      #00c896;
  --orange:     #f94e28;
  --orange-dk:  #de3e1c;
  --dark:       #1C266A;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  font-weight: 400;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { border: none; background: transparent; cursor: pointer; font-family: inherit; }

/* ── MARQUEE TOP BAR (Blue → Orange Gradient) ── */
.marquee-bar { background: linear-gradient(90deg, #7ec8e3 0%, #aabfdb 35%, #d4a594 55%, #f08060 75%, #f94e28 100%); color: #fff; padding: 9px 0; overflow: hidden; position: relative; z-index: 90; }
.marquee-track { display: flex; animation: mq 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { padding: 0 50px; font-size: 14px; font-weight: 500; letter-spacing: .5px; white-space: nowrap; display: flex; align-items: center; gap: 12px; color: #fff; }
.marquee-item::before { content: '◆'; color: rgba(255,255,255,.7); font-size: 10px; }
@keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── HEADER ── */
.site-header {
  background: var(--white);
  padding: 18px 60px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header-logo img { width: 200px; height: auto; max-height: 80px; object-fit: contain; }
.header-nav { display: flex; gap: 50px; flex: 1; justify-content: center; }
.header-nav a {
  font-size: 16px; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color .25s;
}
.header-nav a:hover, .header-nav a.active { color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 14px; }

/* Light Blue Rounded Buttons (Header style) */
.btn { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .3px; padding: 14px 28px; border-radius: 50px; transition: all .3s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; line-height: 1.2; text-align: center; }
.btn-primary { background: #a4d5ee; color: #000; }
.btn-primary:hover { background: linear-gradient(135deg, #0a1235 0%, #1c266a 55%, #2b4dff 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,18,53,.35); }
.btn-outline { background: #a4d5ee; color: #000; border: none; }
.btn-outline:hover { background: linear-gradient(135deg, #0a1235 0%, #1c266a 55%, #2b4dff 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,18,53,.35); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--blue); }
.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-2px); }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; border-radius: 50%; background: var(--ink); transition: background .3s; }
.hamburger:hover { background: var(--blue); }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s ease, opacity .25s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 380px;
  background: var(--ink); color: #fff;
  z-index: 200; padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu-links a { display: block; font-size: 18px; font-weight: 500; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); transition: color .25s, padding-left .25s; }
.mobile-menu-links a:hover { color: var(--blue-lt); padding-left: 8px; }
.mobile-menu-buttons { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-socials { margin-top: 32px; display: flex; gap: 14px; }
.mobile-menu-socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: grid; place-items: center; transition: background .3s; }
.mobile-menu-socials a:hover { background: var(--blue); }
.mobile-menu-socials svg { width: 16px; height: 16px; fill: #fff; }
body.menu-open { overflow: hidden; }

/* ── HERO / BANNER (Deep Navy with Photo Right) ── */
.hero {
  background: var(--navy);
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* Decorative dotted circle bottom-left */
.hero::before {
  content:''; position: absolute; bottom: -100px; left: -100px;
  width: 280px; height: 280px;
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 50%;
}
.hero::after {
  content:''; position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border: 2px dashed rgba(255,255,255,.08);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.hero-left { padding: 40px 0; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  background: transparent; padding: 0;
  font-size: 16px; font-weight: 600;
  color: #fff;
  margin-bottom: 32px; box-shadow: none;
  letter-spacing: .5px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 10px; height: 10px;
  background: #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-eyebrow::after {
  content: ''; display: inline-block;
  width: 70px; height: 2px;
  background: #fff;
  margin-left: -10px;
}
.hero-eyebrow svg { display: none; }
.hero h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 28px;
}
.hero h1 span { color: #fff; display: block; }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 540px; line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons .btn-primary,
.hero-buttons .btn-outline { background: #a4d5ee; color: #000; }
.hero-buttons .btn-primary:hover,
.hero-buttons .btn-outline:hover { background: linear-gradient(135deg, #0a1235 0%, #1c266a 55%, #2b4dff 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,18,53,.35); }

/* Hero Right - Photo + Decorations */
.hero-right { position: relative; }
.hero-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Small blue dot above photo */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -16px; left: 60px;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 6px rgba(43,77,255,.2);
}
/* Decorative squiggle - top right corner */
.hero-squiggle {
  position: absolute;
  top: -30px; right: -20px;
  width: 180px; height: 100px;
  opacity: .4;
  z-index: 1;
  pointer-events: none;
}
.hero-squiggle svg { width: 100%; height: 100%; }

/* ── SECTION COMMON ── */
section { padding: 100px 40px; position: relative; }
.section-wrap { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange); margin-bottom: 22px; }
.section-label::before { content:''; width: 12px; height: 12px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
.section-label::after { content:''; width: 70px; height: 2px; background: var(--orange); margin-left: -10px; }
.section-title { font-size: clamp(34px, 4vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 22px; }
.section-title span { color: var(--blue); }
.section-text { font-size: 17px; color: var(--muted); line-height: 1.8; }

/* Reveal */
.rv { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.rv.in { opacity: 1; transform: none; }
.rvl { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s ease; }
.rvl.in { opacity: 1; transform: none; }
.rvr { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s ease; }
.rvr.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ── ABOUT SECTION ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: stretch; }
.about-text > p { margin-bottom: 18px; color: var(--ink2); line-height: 1.8; font-size: 17px; }
.about-text { display: flex; flex-direction: column; justify-content: center; }
.about-visual { display: flex; align-items: stretch; }
/* Mission Statement - inline label style (orange eyebrow) */
.mission-block { margin-top: 28px; }
.mission-block .mission-label { display: inline-flex; align-items: center; gap: 14px; font-size: 18px; font-weight: 700; letter-spacing: .5px; text-transform: none; color: var(--orange); margin-bottom: 18px; }
.mission-block .mission-label::before { content:''; width: 12px; height: 12px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
.mission-block .mission-label::after { content:''; width: 70px; height: 2px; background: var(--orange); margin-left: -10px; }
.mission-block p { font-size: 17px; line-height: 1.8; color: var(--ink2); }

.about-visual { position: relative; width: 100%; }
.about-img-wrap { background: transparent; width: 100%; height: 100%; min-height: 540px; border-radius: 24px; padding: 0; display: block; overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; object-fit: cover; object-position: center; filter: none; display: block; }

/* Features list — orange checkmark badge style */
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; margin-top: 32px; padding-top: 28px; padding-bottom: 8px; border-top: 1px solid var(--border); }
.feature-pill { display: flex; align-items: center; gap: 12px; padding: 0; background: transparent; border-radius: 0; font-weight: 700; font-size: 17px; color: var(--navy); transition: color .3s; border: none; }
.feature-pill:hover { background: transparent; border: none; transform: none; box-shadow: none; color: var(--blue); }
.feature-pill .check-badge { width: 26px; height: 26px; background: transparent; border: none; flex-shrink: 0; display: grid; place-items: center; position: relative; }
.feature-pill .check-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1l2.4 3.4 3.7-1.3 1 3.9 4 .3-1.2 3.8 3.1 2.5-2.7 3 1.8 3.6-3.7 1.5.2 4-4-.4-1.7 3.6L12 23l-2.9 2.9-1.7-3.6-4 .4.2-4-3.7-1.5L1.7 14 -1 11l3.1-2.5L1 4.7l4-.3 1-3.9 3.7 1.3L12 1z'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1l2.4 3.4 3.7-1.3 1 3.9 4 .3-1.2 3.8 3.1 2.5-2.7 3 1.8 3.6-3.7 1.5.2 4-4-.4-1.7 3.6L12 23l-2.9 2.9-1.7-3.6-4 .4.2-4-3.7-1.5L1.7 14 -1 11l3.1-2.5L1 4.7l4-.3 1-3.9 3.7 1.3L12 1z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.feature-pill .check-badge::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px; height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  margin-top: -2px;
}
.feature-pill svg { display: none; }
.about-cta { display: flex; align-items: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.call-now { display: flex; align-items: center; gap: 12px; }
.call-now-ico { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 50%; display: grid; place-items: center; color: var(--blue); font-size: 20px; }
.call-now-text small { display: block; font-size: 12px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.call-now-text strong { display: block; font-size: 18px; color: var(--ink); font-weight: 700; }

/* ── SERVICES SECTION ── */
.services { background: var(--light); }
.services-header { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.services-header .section-label { justify-content: center; }
.services-header .section-text { margin-top: 16px; }
.doctors-slider { position: relative; overflow: hidden; }
.doctors-track { display: flex; gap: 24px; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.doctor-card { flex: 0 0 calc(25% - 18px); background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(10,31,68,.06); transition: all .35s; position: relative; }
.doctor-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(43,77,255,.18); }
.doctor-img { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.doctor-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.doctor-card:hover .doctor-img img { transform: scale(1.08); }
.doctor-info { padding: 22px 22px 26px; text-align: center; }
.doctor-name { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.doctor-role { font-size: 13px; color: var(--blue); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.slider-controls { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: grid; place-items: center; color: var(--ink); font-size: 18px; transition: all .3s; cursor: pointer; }
.slider-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(43,77,255,.3); }

/* ── WHY CHOOSE US (White Bg + Cards Left + Photo Right) ── */
.why { background: var(--white); color: var(--navy); position: relative; overflow: hidden; padding: 100px 40px; }
.why-header { margin-bottom: 50px; max-width: 720px; }
.why-header .section-title { font-size: clamp(40px, 5vw, 60px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: var(--navy); }
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: start; position: relative; z-index: 1; }
.why-cards { display: flex; flex-direction: column; gap: 24px; }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 32px 32px 36px;
  display: flex;
  gap: 24px;
  transition: all .35s ease;
}
.why-card.active,
.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(43,77,255,.12);
}
.why-card-icon {
  width: 62px; height: 62px;
  background: var(--orange);
  border-radius: 14px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  transition: background .35s ease;
}
.why-card-icon svg { width: 32px; height: 32px; fill: #fff; }
.why-card-body { flex: 1; }
.why-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -.3px;
}
.why-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink2);
  opacity: .8;
}
.why-card-text p { margin-bottom: 6px; }
.why-photo {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.why-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ── CAREER CTA (Black Rounded Card) ── */
.career-cta {
  background: var(--white);
  padding: 30px 40px 30px;
  position: relative;
}
.career-cta::before { content: none; }
.career-cta-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  border-radius: 24px;
  padding: 70px 70px;
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.career-cta-card::after {
  content: '';
  position: absolute;
  bottom: 30px; right: 50px;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(43,77,255,.15);
}
.career-cta-headline {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
}
.career-cta-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 32px;
  background: #a4d5ee;
  color: var(--navy);
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .3s;
  white-space: nowrap;
}
.career-cta-btn:hover { background: #fff; transform: translateY(-2px); }
.career-cta-call { display: flex; align-items: center; gap: 16px; }
.career-cta-call-ico {
  width: 56px; height: 56px;
  background: #a4d5ee;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
}
.career-cta-call-ico svg { width: 24px; height: 24px; fill: var(--navy); }
.career-cta-call-text small {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
  margin-bottom: 4px;
}
.career-cta-call-text strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
}
.career-cta-call-text a { color: inherit; }

/* ── CONTACT SECTION ── */
.contact { background: var(--white); padding-top: 50px; position: relative; }
/* World map dotted background */
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(28,38,106,.12) 1px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: .4;
  pointer-events: none;
}
.contact .section-wrap { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.contact-info-card { background: transparent; border-radius: 0; padding: 0; }
.contact-info-card .section-label { margin-bottom: 18px; }
.contact-info-card p { font-size: 17px; color: var(--ink2); line-height: 1.7; margin-bottom: 44px; max-width: 540px; }
.contact-items { display: flex; flex-direction: column; gap: 32px; }
.contact-row { display: flex; align-items: center; gap: 22px; }
.contact-row-ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #a4d5ee;
  display: grid; place-items: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all .3s;
  box-shadow: none;
}
.contact-row-ico svg { width: 26px; height: 26px; fill: var(--navy); stroke: var(--navy); }
.contact-row:hover .contact-row-ico { background: var(--blue); transform: translateY(-2px); }
.contact-row:hover .contact-row-ico svg { fill: #fff; stroke: #fff; }
.contact-row-label { font-size: 14px; color: var(--ink2); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; opacity: .7; }
.contact-row-value { font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: -.3px; }
.contact-row a { color: inherit; transition: color .25s; }
.contact-row a:hover { color: var(--blue); }
.contact-map { border-radius: 18px; overflow: hidden; box-shadow: 0 10px 40px rgba(10,31,68,.1); height: 460px; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ── PAGE BANNER (About / Services / Contact etc.) ── */
.page-banner { background: #1C266A; padding: 140px 40px 160px; position: relative; overflow: hidden; }
.page-banner::before { content:''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; pointer-events: none; }
.page-banner::after { content:''; position: absolute; left: 0; right: 0; bottom: 0; height: 50%; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.55) 100%); pointer-events: none; }
.page-banner-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-banner-eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.page-banner-eyebrow .diamond { width: 10px; height: 10px; background: var(--blue); transform: rotate(45deg); flex-shrink: 0; }
.page-banner-eyebrow .dash { width: 80px; height: 2px; background: #fff; }
.page-banner-title { font-size: clamp(44px, 9vw, 8px); color: #fff; line-height: 1; letter-spacing: -2px; margin: 0; }

/* Variant: deep navy banner with breadcrumb + globe + curve decorations (Services / inner pages) */
.page-banner-deco { background: #0e1947; padding: 110px 40px 130px; }
.page-banner-deco::before { background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); opacity: .35; }
.page-banner-deco::after { display: none; }
.pb-globe { position: absolute; left: -60px; bottom: -120px; width: 460px; height: 460px; opacity: .35; pointer-events: none; z-index: 0; }
.pb-globe svg { width: 100%; height: 100%; }
.pb-curves { position: absolute; right: -40px; top: 30%; width: 540px; height: 420px; opacity: .35; pointer-events: none; z-index: 0; }
.pb-curves svg { width: 100%; height: 100%; }
.pb-title-md { font-size: clamp(48px, 7vw, 88px); font-weight: 800; letter-spacing: -1px; }
.pb-breadcrumb { display: flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 18px; color: #fff; font-weight: 600; }
.pb-breadcrumb .pb-diamond { width: 10px; height: 10px; background: var(--blue); transform: rotate(45deg); flex-shrink: 0; }
.pb-breadcrumb .pb-dash { width: 60px; height: 2px; background: #fff; }
.pb-breadcrumb a { color: #fff; transition: color .25s; }
.pb-breadcrumb a:hover { color: var(--blue-lt); }
.pb-breadcrumb .pb-sep { color: rgba(255,255,255,.55); margin: 0 4px; }
.pb-breadcrumb .pb-current { color: #fff; }

/* ── ABOUT COMPANY / MISSION ── */
.about-company { background: #fff; padding: 80px 40px 100px; }
.about-company-wrap { max-width: 1280px; margin: 0 auto; }
.about-company-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.about-company-image img { width: 100%; height: 100%; max-height: 720px; min-height: 560px; display: block; border-radius: 100px 18px 18px 18px; object-fit: cover; }
.about-company-content { padding: 10px 0; }
.ac-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 700; letter-spacing: .5px; color: var(--orange); margin-bottom: 18px; }
.ac-eyebrow-spaced { margin-top: 22px; }
.ac-eyebrow .diamond { width: 10px; height: 10px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
.ac-eyebrow .dash { width: 28px; height: 2px; background: var(--orange); margin-right: 4px; }
.about-company-content p { font-size: 16px; line-height: 1.85; color: #1f2937; margin: 0 0 18px; }
.ac-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 30px; margin: 30px 0 36px; padding-top: 6px; }
.ac-feature { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; color: var(--navy); }
.ac-check { width: 28px; height: 28px; border-radius: 50%; background: rgba(249,78,40,.12); display: inline-grid; place-items: center; flex-shrink: 0; }
.ac-check svg { width: 16px; height: 16px; fill: var(--orange); }
.ac-cta-row { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid #e6e8f0; }
.ac-btn { display: inline-flex; align-items: center; gap: 12px; background: #a4d5ee; color: #000; padding: 16px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; transition: all .25s; }
.ac-btn:hover { background: var(--blue); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43,77,255,.3); }
.ac-btn span { transition: transform .25s; }
.ac-btn:hover span { transform: translateX(4px); }
.ac-call { display: flex; align-items: center; gap: 14px; }
.ac-call-icon { width: 54px; height: 54px; border-radius: 50%; background: #a4d5ee; display: grid; place-items: center; flex-shrink: 0; }
.ac-call-icon svg { width: 22px; height: 22px; fill: var(--navy); }
.ac-call-text small { display: block; font-size: 13px; color: #6b7280; margin-bottom: 2px; }
.ac-call-text a { font-size: 18px; font-weight: 700; color: var(--navy); }
.ac-call-text a:hover { color: var(--blue); }

/* ── GROW WITH EXCELLENCE FORM ── */
.gwe-form-section { background: #fff; padding: 70px 40px 90px; }
.gwe-wrap { max-width: 1280px; margin: 0 auto; }
.gwe-title { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--orange); margin: 0 0 30px; letter-spacing: -.5px; }
.gwe-sub { text-align: center; font-size: 22px; font-weight: 700; color: #111; margin: 0 0 18px; }
.gwe-intro { text-align: center; font-size: 17px; line-height: 1.8; color: var(--navy); max-width: 1100px; margin: 0 auto 50px; }
.gwe-form { display: flex; flex-direction: column; gap: 28px; }
.gwe-row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.gwe-field { display: flex; flex-direction: column; gap: 10px; }
.gwe-field label { font-size: 15px; font-weight: 600; color: var(--navy); }
.gwe-field .req { color: var(--orange); margin-left: 2px; }
.gwe-field input[type="text"],
.gwe-field input[type="email"],
.gwe-field input[type="tel"],
.gwe-field input[type="date"],
.gwe-field select,
.gwe-field textarea { width: 100%; background: #fff; border: 1px solid #d8dbe6; border-radius: 6px; padding: 14px 16px; font-family: inherit; font-size: 15px; color: var(--navy); transition: border-color .2s, box-shadow .2s; box-sizing: border-box; }
.gwe-field input::placeholder,
.gwe-field textarea::placeholder { color: #b6b9c4; }
.gwe-field input:focus,
.gwe-field select:focus,
.gwe-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,77,255,.10); }
.gwe-field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.gwe-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%231C266A' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.gwe-phone { display: flex; align-items: stretch; border: 1px solid #d8dbe6; border-radius: 6px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.gwe-phone:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,77,255,.10); }
.gwe-phone .gwe-flag { display: inline-grid; place-items: center; padding: 0 10px 0 12px; background: #fff; border-right: 1px solid #e6e8f0; flex-shrink: 0; }
.gwe-phone .gwe-flag svg { width: 22px; height: 16px; display: block; border-radius: 2px; }
.gwe-phone input { border: none !important; box-shadow: none !important; padding-left: 12px; }
.gwe-divider { font-size: 16px; color: #6b7280; padding-bottom: 8px; border-bottom: 1px solid #e6e8f0; margin: 4px 0 0; }
.gwe-checks { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.gwe-check { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; font-size: 16px; color: var(--navy); font-weight: 500; }
.gwe-check input { width: 20px; height: 20px; appearance: none; -webkit-appearance: none; border: 1px solid #c9ccd6; border-radius: 4px; background: #e9ecf2; cursor: pointer; flex-shrink: 0; position: relative; transition: background .2s, border-color .2s; }
.gwe-check input:checked { background: var(--blue); border-color: var(--blue); }
.gwe-check input:checked::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.gwe-upload-note { font-size: 14px; line-height: 1.8; color: var(--navy); margin: 8px 0 4px; }
.gwe-drop { display: flex; align-items: center; justify-content: center; min-height: 130px; border: 1.5px dashed #c9ccd6; border-radius: 8px; cursor: pointer; padding: 24px; transition: border-color .2s, background .2s; }
.gwe-drop:hover { border-color: var(--blue); background: #f7f9ff; }
.gwe-drop-text { font-size: 16px; color: #6b7280; text-align: center; }
.gwe-btn { align-self: flex-start; background: #5cb8e6; color: #fff; border: none; padding: 16px 38px; border-radius: 8px; font-size: 17px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all .25s; }
.gwe-btn:hover { background: linear-gradient(135deg, #0a1235 0%, #1c266a 55%, #2b4dff 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,18,53,.35); }
.gwe-important { margin-top: 60px; }
.gwe-important h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 18px; }
.gwe-important p { font-size: 16px; line-height: 1.7; color: var(--navy); margin: 0 0 16px; }
.pwe-form-section .pwe-sub { text-align: left; font-size: 20px; font-weight: 700; color: #111; margin: 0 0 50px; }

/* ── FULL-WIDTH MAP ── */
.map-section { width: 100%; line-height: 0; }
.map-section iframe { width: 100%; height: 560px; border: 0; display: block; }

/* ── CONTACT FORM (Light box with white inputs) ── */
.contact-form-section { background: #fff; padding: 40px 40px 100px; }
.cfs-wrap { max-width: 1280px; margin: 0 auto; background: #f5f6f8; border: 1px solid #e6e8f0; border-radius: 12px; padding: 50px 60px; }
.cfs-form { display: flex; flex-direction: column; gap: 22px; }
.cfs-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
.cfs-row-2 { grid-template-columns: 1fr 1fr; }
.cfs-field { display: flex; }
.cfs-empty { visibility: hidden; }
.cfs-field input,
.cfs-field textarea { width: 100%; background: #fff; border: 1px solid #e2e4ec; border-radius: 8px; padding: 18px 22px; font-family: inherit; font-size: 15px; color: var(--navy); transition: border-color .2s, box-shadow .2s; }
.cfs-field input::placeholder,
.cfs-field textarea::placeholder { color: #9ca3af; font-weight: 400; }
.cfs-field input:focus,
.cfs-field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,77,255,.10); }
.cfs-field textarea { resize: vertical; min-height: 150px; line-height: 1.5; }
.cfs-btn { align-self: flex-start; background: #a4d5ee; color: #000; border: none; padding: 18px 36px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all .25s; }
.cfs-btn:hover { background: linear-gradient(135deg, #0a1235 0%, #1c266a 55%, #2b4dff 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,18,53,.35); }

/* ── HAVE QUESTIONS / EMAIL & CONTACT ── */
.have-questions { background: #fff; padding: 90px 40px 70px; }
.hq-wrap { max-width: 1280px; margin: 0 auto; }
.hq-head { text-align: center; margin-bottom: 70px; }
.hq-eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-size: 22px; font-weight: 700; color: var(--orange); margin-bottom: 20px; flex-wrap: wrap; }
.hq-diamond { width: 12px; height: 12px; background: var(--orange); transform: rotate(45deg); flex-shrink: 0; }
.hq-dash { width: 70px; height: 2px; background: var(--orange); }
.hq-intro { font-size: 19px; line-height: 1.7; color: #1f2937; max-width: 980px; margin: 0 auto; }
.hq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 20px 60px; }
.hq-h2 { font-size: clamp(40px, 5vw, 56px); font-weight: 800; color: var(--navy); margin: 0 0 32px; letter-spacing: -.5px; }
.hq-item { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; font-size: 22px; color: var(--navy); font-weight: 600; }
.hq-icon { width: 28px; height: 28px; display: inline-grid; place-items: center; flex-shrink: 0; }
.hq-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.hq-item a { color: var(--navy); transition: color .25s; }
.hq-item a:hover { color: var(--blue); }

/* ── OUR PROCESS (3-step cards) ── */
.our-process { background: #fff; padding: 10px 40px 80px; margin-top: -30px; }
.our-process-wrap { max-width: 1280px; margin: 0 auto; }
.op-subtitle { font-size: 20px; font-weight: 700; letter-spacing: 1.5px; color: #6b7280; text-transform: uppercase; margin: 14px 0 36px; }
.op-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.op-card { background: #fff; border: 1px solid #e6e8f0; border-radius: 14px; padding: 50px 40px 56px; text-align: center; box-shadow: 0 6px 22px rgba(10,31,68,.04); transition: transform .25s, box-shadow .25s; }
.op-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,31,68,.10); }
.op-num { width: 110px; height: 110px; border-radius: 50%; background: #131a4d; color: #fff; font-size: 48px; font-weight: 800; display: grid; place-items: center; margin: 0 auto 40px; line-height: 1; }
.op-card-title { font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.5; margin: 0; }

/* ── OUR SERVICES SLIDER ── */
.our-services { background: #fff; padding: 80px 40px 50px; }
.our-services-wrap { max-width: 1280px; margin: 0 auto; }
.os-subtitle { font-size: 14px; font-weight: 600; letter-spacing: 2px; color: #6b7280; text-transform: uppercase; margin: 16px 0 18px; }
.os-intro { font-size: 18px; line-height: 1.7; color: #1f2937; max-width: 1100px; margin: 0 0 48px; }
.os-slider { position: relative; }
.os-track { display: flex; gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 4px 12px; scrollbar-width: none; -ms-overflow-style: none; }
.os-track::-webkit-scrollbar { display: none; }
.os-card { flex: 0 0 calc((100% - 56px) / 3); scroll-snap-align: start; }
.os-card-image { width: 100%; overflow: hidden; border-radius: 8px; }
.os-card-image img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .5s ease; }
.os-card:hover .os-card-image img { transform: scale(1.04); }
.os-card-title { font-size: 22px; font-weight: 700; color: var(--navy); margin: 22px 0 0; }
.os-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 42px; }
.os-btn { width: 44px; height: 44px; border-radius: 50%; background: #f3f4f6; border: 1px solid #e6e8f0; color: var(--navy); display: grid; place-items: center; cursor: pointer; transition: all .25s; padding: 0; }
.os-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.os-btn svg { width: 22px; height: 22px; fill: currentColor; }
.os-dots { display: flex; gap: 8px; }
.os-dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; cursor: pointer; transition: background .25s, transform .25s; border: 0; padding: 0; }
.os-dot.active { background: var(--orange); transform: scale(1.2); }

/* ── WHY CHOOSE US ── */
.why-choose { background: #fff; padding: 80px 40px 100px; }
.why-choose-wrap { max-width: 1280px; margin: 0 auto; }
.why-choose-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: start; }
.why-choose-left { padding-top: 10px; }
.why-choose-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--navy); line-height: 1.15; letter-spacing: -.8px; margin: 0 0 40px; }
.why-card { display: flex; gap: 22px; align-items: flex-start; background: #fff; border: 1px solid #e6e8f0; border-radius: 12px; padding: 26px 28px; margin-bottom: 22px; transition: box-shadow .25s, transform .25s; }
.why-card:hover { box-shadow: 0 14px 40px rgba(10,31,68,.08); transform: translateY(-2px); }
.why-card-icon { width: 56px; height: 56px; border-radius: 10px; background: rgba(249,78,40,.10); display: grid; place-items: center; flex-shrink: 0; position: relative; }
.why-card-icon svg { width: 28px; height: 28px; fill: var(--orange); }
.why-card-badge { position: absolute; bottom: 6px; right: 6px; background: #fff; color: var(--orange); font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 8px; border: 1.5px solid var(--orange); line-height: 1; }
.why-card-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 12px; line-height: 1.3; }
.why-card-content p { font-size: 15px; line-height: 1.75; color: #4b5563; margin: 0; }
.why-choose-right { position: sticky; top: 100px; }
.why-choose-right img { width: 100%; height: auto; max-height: 560px; min-height: 480px; display: block; border-radius: 14px; object-fit: cover; box-shadow: 0 20px 60px rgba(10,31,68,.15); }

/* ── FOUNDER / VISION SECTION ── */
.founder-section { background: #fff; padding: 100px 40px; }
.founder-wrap { max-width: 1200px; margin: 0 auto; }
.founder-head { text-align: center; margin-bottom: 70px; }
.founder-h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: var(--navy); margin: 0 0 14px; letter-spacing: -.5px; line-height: 1.2; }
.founder-sub { font-size: clamp(18px, 2vw, 22px); color: var(--orange, #f15a29); font-weight: 600; }
.founder-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.founder-statement-title { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 22px; }
.founder-text p { font-size: 18px; line-height: 1.8; color: #000; margin: 0 0 18px; }
.founder-text p:last-child { margin-bottom: 0; }
.founder-image { width: 100%; display: flex; justify-content: center; }
.founder-image img { width: 100%; max-width: 380px; height: 460px; display: block; border-radius: 10px; box-shadow: 0 18px 50px rgba(10,31,68,.18); object-fit: cover; object-position: center 20%; }

/* ── FOOTER ── */
.footer { background: #000; color: rgba(255,255,255,.75); padding: 80px 40px 30px; position: relative; overflow: hidden; }
.footer::before { content:''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; opacity: .4; pointer-events: none; }
.footer-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 60px; margin-bottom: 60px; align-items: start; }
.footer-brand img { width: 170px; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; line-height: 1.75; margin-bottom: 0; color: rgba(255,255,255,.85); max-width: 360px; }
.footer-col-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 28px; letter-spacing: .3px; }
.footer-links { display: flex; flex-direction: column; gap: 18px; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,.85); transition: color .25s, padding-left .25s; display: inline-block; }
.footer-links a:hover { color: var(--blue-lt); padding-left: 4px; }
.footer-links a.active { color: var(--blue-lt); }
.footer-social-share { display: flex; flex-direction: column; align-items: flex-end; gap: 0; }
.social-share-row { display: flex; align-items: center; gap: 18px; }
.social-share-label { font-size: 18px; font-weight: 600; color: #fff; }
.footer-socials { display: flex; gap: 18px; align-items: center; }
.footer-socials a { display: inline-grid; place-items: center; transition: transform .25s, color .25s; color: #fff; }
.footer-socials a:hover { color: var(--blue-lt); transform: translateY(-3px); }
.footer-socials svg { width: 24px; height: 24px; fill: currentColor; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 14px; color: rgba(255,255,255,.85); }
.footer-bottom .zenesa { color: var(--blue-lt); font-weight: 600; }
.footer-bottom a { color: var(--blue-lt); transition: color .25s; }
.footer-bottom a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .site-header { padding: 16px 30px; }
  .header-nav { gap: 30px; }
  .header-nav a { font-size: 14px; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-left { padding: 20px 0; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-photo-wrap { max-width: 540px; margin: 0 auto; }
  .about-grid, .why-grid, .career-cta-inner, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .career-cta-card { grid-template-columns: 1fr; gap: 32px; padding: 50px 40px; text-align: left; }
  .career-cta-headline { font-size: 19px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .doctor-card { flex: 0 0 calc(33.33% - 16px); }
  .header-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 30px; }
  .hero { padding: 60px 30px 80px; }
}
@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .header-logo img { width: 140px; max-height: 56px; }
  .hero, section, .career-cta { padding-left: 20px; padding-right: 20px; }
  .footer { padding: 60px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-social-share { align-items: flex-start; }
  .footer-brand img { width: 150px; }
  .page-banner { padding: 90px 20px 100px; }
  .page-banner-eyebrow .dash { width: 50px; }
  .page-banner-deco { padding: 70px 20px 90px; }
  .pb-globe { width: 260px; height: 260px; left: -80px; bottom: -80px; }
  .pb-curves { width: 320px; height: 260px; right: -60px; top: 40%; }
  .pb-breadcrumb { font-size: 15px; gap: 10px; }
  .pb-breadcrumb .pb-dash { width: 36px; }
  .founder-section { padding: 60px 20px; }
  .founder-head { margin-bottom: 40px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; align-items: center; }
  .founder-image { height: auto; min-height: 0; max-width: 480px; margin: 0 auto; }
  .founder-image img { height: auto; aspect-ratio: 4 / 5; }
  .about-company { padding: 50px 20px 60px; }
  .about-company-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-company-image img { min-height: 0; max-height: 480px; border-radius: 60px 14px 14px 14px; }
  .ac-features { grid-template-columns: 1fr; gap: 14px; }
  .ac-cta-row { flex-direction: column; align-items: flex-start; gap: 22px; }
  .our-services { padding: 50px 20px 70px; }
  .os-card { flex: 0 0 88%; }
  .os-card-image img { height: 280px; }
  .os-card-title { font-size: 19px; }
  .gwe-form-section { padding: 50px 20px 70px; }
  .gwe-title { text-align: left; }
  .gwe-sub { font-size: 18px; }
  .gwe-intro { font-size: 15px; margin-bottom: 36px; }
  .gwe-row { grid-template-columns: 1fr; gap: 22px; }
  .gwe-form { gap: 22px; }
  .gwe-btn { width: 100%; text-align: center; }
  .gwe-upload-note { font-size: 13px; }
  .map-section iframe { height: 380px; }
  .contact-form-section { padding: 30px 20px 70px; }
  .cfs-wrap { padding: 30px 22px; border-radius: 10px; }
  .cfs-row-2 { grid-template-columns: 1fr; }
  .cfs-empty { display: none; }
  .cfs-field input, .cfs-field textarea { padding: 14px 18px; font-size: 14px; }
  .cfs-btn { padding: 16px 28px; width: 100%; text-align: center; }
  .have-questions { padding: 60px 20px 40px; }
  .hq-head { margin-bottom: 40px; }
  .hq-eyebrow { font-size: 17px; gap: 10px; }
  .hq-dash { width: 30px; }
  .hq-intro { font-size: 16px; }
  .hq-grid { grid-template-columns: 1fr; gap: 50px; padding: 0; }
  .hq-h2 { font-size: 36px; margin-bottom: 22px; }
  .hq-item { font-size: 16px; gap: 12px; word-break: break-word; }
  .hq-icon svg { width: 22px; height: 22px; }
  .our-process { padding: 0 20px 50px; margin-top: -10px; }
  .op-subtitle { font-size: 16px; margin: 12px 0 24px; letter-spacing: 1px; }
  .op-grid { grid-template-columns: 1fr; gap: 22px; }
  .op-card { padding: 36px 24px 40px; }
  .op-num { width: 88px; height: 88px; font-size: 38px; margin-bottom: 28px; }
  .op-card-title { font-size: 18px; }
  .why-choose { padding: 50px 20px 60px; }
  .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-choose-right { position: static; }
  .why-choose-right img { min-height: 0; max-height: 380px; }
  .why-card { padding: 22px 20px; gap: 16px; }
  .why-card-content h3 { font-size: 18px; }
  .features-list { grid-template-columns: 1fr; }
  .doctor-card { flex: 0 0 calc(50% - 12px); }
  .why-stats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; letter-spacing: -1px; }
  .section-title { font-size: 32px; }
  .about-img-wrap { aspect-ratio: 4/3; padding: 24px; }
  .about-img-wrap img { width: 50%; }
  .career-cta-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .contact-info-card { padding: 28px 24px; }
  .contact-map { height: 360px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .marquee-item { padding: 0 30px; font-size: 12px; }
  .hero-squiggle { width: 120px; top: -20px; right: -10px; }
}
@media (max-width: 480px) {
  .doctor-card { flex: 0 0 100%; }
  .hero h1 { font-size: 38px; }
  .hero-eyebrow { font-size: 14px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .about-cta { flex-direction: column; align-items: flex-start; }
}
