/* =========================================================
   Tokens
========================================================= */
:root{
  --blue-900:#0F2A63;
  --blue-700:#1E4FD6;
  --blue-500:#3E7BFA;
  --blue-100:#EAF1FF;
  --blue-050:#F5F9FF;
  --ink:#12224C;
  --ink-soft:#5C6A8C;
  --white:#FFFFFF;
  --line:#E4EAF7;

  --font-display:'Plus Jakarta Sans', sans-serif;
  --font-body:'Inter', sans-serif;

  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:12px;

  --shadow-card: 0 20px 45px -25px rgba(15,42,99,0.35);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-display); margin:0; color:var(--blue-900); line-height:1.15; }
p{ margin:0; color:var(--ink-soft); line-height:1.4; }
ul{ font-size:15px; color:var(--ink-soft); line-height: 1.4; list-style: disc; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.text-accent{ color:var(--blue-500); }

/* reveal-on-scroll */
[data-reveal]{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}
@media (prefers-reduced-motion:reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   Buttons
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space:nowrap;
}
.btn:focus-visible{ outline:3px solid var(--blue-500); outline-offset:3px; }
.btn-primary{
  background:var(--blue-700);
  color:var(--white);
  box-shadow:0 14px 30px -12px rgba(30,79,214,0.55);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -12px rgba(30,79,214,0.6); }
.btn-ghost{
  background:transparent;
  color:var(--blue-900);
  border-color:var(--line);
}
.btn-ghost:hover{ border-color:var(--blue-500); color:var(--blue-700); }
.btn-outline{
  width:100%;
  background:var(--white);
  color:var(--blue-700);
  border-color:var(--blue-100);
}
.btn-outline:hover{ background:var(--blue-100); }
.btn-white{
  background:var(--white);
  color:var(--blue-700);
}
.btn-white:hover{ transform:translateY(-2px); }
.btn-sm{ padding:11px 22px; font-size:14px; }

/* =========================================================
   Header
========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
}
.logo{ display:flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:800; font-size:19px; color:var(--blue-900); }
.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav a{ font-size:15px; font-weight:500; color:var(--ink); position:relative; padding:6px 0; }
.main-nav a.active,
.main-nav a:hover{ color:var(--blue-700); }
.main-nav a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--blue-500); border-radius:2px;
}
.header-actions{ display:flex; align-items:center; gap:16px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:14px; color:var(--blue-900); }
.header-phone svg{ color:var(--blue-500); }
.btn-icon{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--line); background:var(--white);
  display:flex; align-items:center; justify-content:center; color:var(--blue-700); cursor:pointer;
}
.hamburger{ display:none; flex-direction:column; gap:5px; width:38px; height:38px; border:none; background:none; cursor:pointer; align-items:center; justify-content:center; }
.hamburger span{ width:20px; height:2px; background:var(--blue-900); border-radius:2px; transition:.25s; }

/* =========================================================
   Hero
========================================================= */
.hero{
  position:relative;
  background:radial-gradient(circle at 18% 20%, #FDEDE6 0%, rgba(253,237,230,0) 45%), var(--blue-050);
  padding:76px 0 90px;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  color:var(--blue-500);
  margin-bottom:16px;
}
.eyebrow.center{ display:block; text-align:center; }
.hero-copy h1{
  font-size:clamp(34px, 4.6vw, 52px);
  font-weight:800;
  max-width:560px;
  margin-bottom:32px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-figure{ position:relative; display:flex; justify-content:center; }
.hero-blob{
  position:absolute; inset:0;
  background:linear-gradient(160deg, var(--blue-500), var(--blue-700));
  border-radius:46% 54% 62% 38% / 50% 45% 55% 50%;
  transform:scale(1.02);
  z-index:0;
}
.hero-photo{
  position:relative; z-index:1;
  width:78%;
  border-radius:46% 54% 62% 38% / 50% 45% 55% 50%;
  object-fit:cover;
  aspect-ratio:3/4;
}
.floaty{
  position:absolute;
  width:52px; height:52px;
  background:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-card);
  z-index:2;
}
.floaty-1{ top:8%; right:6%; }
.floaty-2{ bottom:20%; left:0; }
.floaty-3{ bottom:6%; right:14%; }

/* =========================================================
   Quote
========================================================= */
.quote-section{ padding:100px 0; }
.quote-inner{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:56px;
  align-items:center;
}
.quote-avatar{
  width:200px; height:200px; border-radius:50%;
  overflow:hidden; background:var(--blue-100);
}
.quote-avatar img{ width:100%; height:100%; object-fit:cover; }
.quote-mark{ display:block; margin-bottom:18px; }
.quote-body p{ font-size:22px; color:var(--blue-900); font-weight:500; line-height:1.6; max-width:fit-content; }
.quote-author{ display:flex; align-items:center; gap:16px; margin-top:24px; font-weight:700; color:var(--blue-900); }
.quote-author .rule{ width:36px; height:2px; background:var(--blue-500); display:inline-block; }

/* =========================================================
   Specializations
========================================================= */
.specializations{ background:var(--blue-050); padding:100px 0; }
.section-head{ max-width:620px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,38px); margin:14px 0; }
.section-head p{ font-size:16px; }

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.service-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:20px 20px 28px;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{ transform:translateY(-6px); box-shadow:0 26px 50px -20px rgba(15,42,99,0.4); }
.service-img{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3; margin-bottom:20px; }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.service-card:hover .service-img img{ transform:scale(1.06); }
.service-card h3{ font-size:19px; margin-bottom:8px; }
.service-card p{ font-size:14.5px; margin-bottom:18px; }
.card-link{ display:inline-flex; align-items:center; gap:6px; font-weight:600; font-size:14px; color:var(--blue-700); }
.card-link svg{ transition:transform .2s ease; }
.card-link:hover svg{ transform:translateX(3px); }

/* =========================================================
   Why choose me
========================================================= */
.why-choose{ position:relative; padding:110px 0; overflow:hidden; color:var(--white); }
.why-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter:saturate(0.9);
}
.why-overlay{
  position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(15,42,99,0.92) 0%, rgba(15,42,99,0.7) 55%, rgba(15,42,99,0.45) 100%);
}
.why-inner{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:48px;
  align-items:start;
}
.why-inner h2{ color:var(--white); font-size:clamp(28px,3.6vw,40px); margin-bottom:28px; }
.why-points{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.why-num{ display:block; font-family:var(--font-display); font-size:34px; font-weight:800; color:rgba(255,255,255,0.4); margin-bottom:10px; }
.why-point p{ color:rgba(255,255,255,0.88); font-size:14.5px; }

/* =========================================================
   Facility
========================================================= */
.facility{ padding:100px 0; }
.facility-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
}
.facility-photo{ height:100%; min-height:380px; }
.facility-photo img{ width:100%; height:100%; object-fit:cover; }
.facility-info{
  background:var(--blue-050);
  padding:56px 48px;
  display:flex; flex-direction:column; justify-content:center; gap:18px;
}
.pin-icon{ width:52px; height:52px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); }
.facility-info h3{ font-size:26px; line-height:1.35; }
.facility-address{ font-size:15px; }
.facility-info .btn{ width:fit-content; margin-top:8px; }

/* =========================================================
   Pricing
========================================================= */
.pricing{ padding:90px 0; background:var(--blue-050); }
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  align-items:stretch;
}
.price-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:36px 30px;
  box-shadow:var(--shadow-card);
  display:flex; flex-direction:column; gap:14px;
  transition:transform .25s ease;
}
.price-card:hover{ transform:translateY(-6px); }
.price-card--highlight{
  background:linear-gradient(160deg, var(--blue-500), var(--blue-700));
  color:var(--white);
}
.price-icon{ width:48px; height:48px; border-radius:50%; background:var(--blue-100); display:flex; align-items:center; justify-content:center; }
.price-icon.light{ background:rgba(255,255,255,0.2); }
.price-tag{ font-size:12px; font-weight:700; letter-spacing:.12em; color:var(--blue-500); }
.price-card--highlight .price-tag{ color:rgba(255,255,255,0.85); }
.price-amount{ font-family:var(--font-display); font-size:44px; font-weight:800; color:var(--blue-900); }
.price-card--highlight .price-amount{ color:var(--white); }
.price-amount .cur{ font-size:22px; vertical-align:top; margin-right:2px; }
.price-amount .per{ font-size:16px; font-weight:500; color:var(--ink-soft); }
.price-card--highlight .price-amount .per{ color:rgba(255,255,255,0.75); }
.price-features{ display:flex; flex-direction:column; gap:10px; margin:8px 0 6px; flex:1; }
.price-features li{ font-size:14.5px; padding-left:22px; position:relative; color:var(--ink-soft); }
.price-card--highlight .price-features li{ color:rgba(255,255,255,0.9); }
.price-features li::before{
  content:''; position:absolute; left:0; top:7px; width:12px; height:12px;
  background:var(--blue-500);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card--highlight .price-features li::before{ background:var(--white); }

/* =========================================================
   Patients
========================================================= */
.patients{ padding:60px 0; background: var(--blue-050);}
.patients-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:center;
}
.patients-stat{ font-family:var(--font-display); font-size:56px; font-weight:800; color:var(--blue-500); margin:10px 0; }
.patients-copy h2{ font-size:clamp(26px,3vw,34px); margin-bottom:16px; }
.patients-copy p{ max-width:440px; margin-bottom:26px; }
.patients-signature strong{ display:block; color:var(--blue-900); font-size:15px; }
.patients-signature span{ font-size:13px; color:var(--ink-soft); }

.patients-photos{ position:relative; height:320px; display:flex; align-items:center; justify-content:center; }
.patient-photo{
  position:absolute; width:150px; height:190px; object-fit:cover;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-card);
  border:6px solid var(--white);
}
.p1{ left:6%; top:8%; transform:rotate(-6deg); z-index:1; }
.p2{ left:32%; top:0; z-index:2; }
.p3{ left:58%; top:10%; transform:rotate(6deg); z-index:1; }
.rating-chip{
  position:absolute; bottom:0; right:2%;
  background:var(--white);
  border-radius:999px;
  box-shadow:var(--shadow-card);
  padding:10px 18px 10px 14px;
  display:flex; align-items:center; gap:10px;
  z-index:3;
}
.rating-num{ font-family:var(--font-display); font-weight:800; color:var(--blue-500); font-size:18px; }
.rating-label{ font-size:11.5px; color:var(--ink-soft); max-width:110px; line-height:1.3; }

/* =========================================================
   Patients Slider
========================================================= */
.pricing-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pricing-track::-webkit-scrollbar {
  display: none;
}

.pricing-track .price-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
}

.slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e6ee;
  background: #fff;
  color: #3E7BFA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.slider-arrow:hover {
  background: #3E7BFA;
  color: #fff;
  border-color: #3E7BFA;
}

.slider-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d7dce6;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slider-dots button.active {
  background: #3E7BFA;
  transform: scale(1.3);
}

.stars{
  color:#ffb400;
  margin-bottom:15px;
}
 


/* =========================================================
   CTA
========================================================= */
.cta{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg, var(--blue-700), var(--blue-500));
  padding:90px 0;
  text-align:center;
  color:var(--white);
}
.cta-pattern{ position:absolute; inset:0; opacity:.6; }
.cta-inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; gap:18px; }
.cta-icon{ width:64px; height:64px; border-radius:50%; background:rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; margin-bottom:6px; }
.cta h2{ color:var(--white); font-size:clamp(26px,3.4vw,36px); max-width:600px; }

/* =========================================================
   Footer
========================================================= */
.site-footer{ background:var(--blue-900); color:rgba(255,255,255,0.75); padding:80px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:40px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.footer-col h4{ color:var(--white); font-family:var(--font-display); font-size:16px; margin-bottom:18px; }
.footer-col p{ color:rgba(255,255,255,0.7); font-size:14.5px; margin-bottom:8px; }
.footer-phone{ font-size:20px; font-weight:700; color:var(--white); margin-bottom:16px; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ font-size:14.5px; color:rgba(255,255,255,0.7); }
.footer-links a:hover{ color:var(--white); }
.footer-social{ display:flex; justify-content:center; margin-top:-24px; }
.footer-social svg{ background:var(--blue-900); padding:0; }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding:26px 24px; flex-wrap:wrap; gap:16px;
}
.footer-social-links{ display:flex; gap:14px; }
.footer-social-links a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
}
.footer-social-links a:hover{ background:var(--blue-500); }
.copyright{ font-size:13px; color:rgba(255,255,255,0.5); }

/* =========================================================
   Inner page hero (services / contact)
========================================================= */
.page-hero{
  position:relative;
  overflow:hidden;
  color:var(--white);
  padding:110px 0 110px;
}
.page-hero--compact{ padding:130px 0 70px; }
.page-hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.page-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(15,42,99,0.94) 0%, rgba(15,42,99,0.78) 60%, rgba(15,42,99,0.55) 100%);
}
.page-hero-inner{ position:relative; z-index:1; }
.page-hero .eyebrow{ color:#BFD3FF; }
.page-hero h1{ color:var(--white); font-size:clamp(32px,4.4vw,48px); margin:6px 0 12px; }
.page-hero-tagline{ color:rgba(255,255,255,0.85); font-size:17px; max-width:520px; }

.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,0.7);
  margin-bottom:22px;
}
.breadcrumb a{ color:rgba(255,255,255,0.85); }
.breadcrumb a:hover{ color:var(--white); }
.breadcrumb span:last-child{ color:var(--white); font-weight:600; }

/* =========================================================
   Service detail
========================================================= */
.service-detail{ padding:100px 0; }
.service-detail-grid{
  display:grid;
  grid-template-columns:1fr 0.9fr;
  gap:56px;
  align-items:center;
}
.service-detail-copy h2{ font-size:clamp(26px,3vw,34px); margin-bottom:16px; }
.service-detail-copy > p{ font-size:16px; margin-bottom:26px; max-width:520px; }
.feature-list{ display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.feature-list li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:15px; color:var(--ink); font-weight:500;
}
.feature-list .check{
  flex:0 0 22px; width:22px; height:22px; border-radius:50%;
  background:var(--blue-100); position:relative; margin-top:1px;
}
.feature-list .check::after{
  content:''; position:absolute; inset:0;
  background:var(--blue-500);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/50% no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3'/%3E%3C/svg%3E") center/50% no-repeat;
}
.service-detail-photo img{
  border-radius:var(--radius-lg);
  aspect-ratio:4/3.4;
  object-fit:cover;
  box-shadow:var(--shadow-card);
}

/* Light "why" variant used on service pages */
.why-choose--light{ background:var(--blue-050); color:var(--ink); padding:90px 0; }
.why-choose--light .why-bg,
.why-choose--light .why-overlay{ display:none; }
.why-inner--light{ align-items:start; }
.why-inner--light .eyebrow{ color:var(--blue-500); }
.why-inner--light h2{ color:var(--blue-900); font-size:clamp(26px,3.2vw,34px); }
.why-choose--light .why-num{ color:var(--blue-100); }
.why-choose--light .why-point h3{ color:var(--blue-900); font-size:17px; margin:4px 0 8px; }
.why-choose--light .why-point p{ color:var(--ink-soft); }

/* =========================================================
   Contact page
========================================================= */
.contact-info{ padding:80px 0 20px; }
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.contact-info-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  padding:28px;
  box-shadow:var(--shadow-card);
}
.contact-icon{
  width:46px; height:46px; border-radius:50%;
  background:var(--blue-100);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.contact-info-card h3{ font-size:17px; margin-bottom:8px; }
.contact-info-card p{ font-size:14.5px; }

.contact-main{ padding:70px 0 110px; }
.contact-main-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:start;
}
.contact-form-wrap h2{ font-size:clamp(26px,3vw,32px); margin:8px 0 12px; }
.contact-form-intro{ font-size:15px; margin-bottom:30px; max-width:460px; }

.contact-form{ display:flex; flex-direction:column; gap:18px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field label{ font-size:13.5px; font-weight:600; color:var(--blue-900); }
.form-field input,
.form-field select,
.form-field textarea{
  font-family:var(--font-body);
  font-size:14.5px;
  padding:13px 16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:var(--blue-050);
  color:var(--ink);
  resize:vertical;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--blue-500);
  box-shadow:0 0 0 3px rgba(62,123,250,0.18);
}
.form-field.has-error input,
.form-field.has-error textarea{ border-color:#E1554A; }
.field-error{
  font-size:12.5px; color:#E1554A; min-height:14px; display:block;
}
.contact-form .btn{ align-self:flex-start; margin-top:4px; }
.form-status{
  font-size:14px; font-weight:600; min-height:20px; margin:0;
}
.form-status.success{ color:#1E9E63; }
.form-status.error{ color:#E1554A; }

.contact-map-wrap{ display:flex; flex-direction:column; gap:24px; }
.contact-map{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  aspect-ratio:4/3.2;
}
.contact-map iframe{ width:100%; height:100%; border:0; display:block; }
.contact-hours-card{
  background:var(--blue-900);
  color:var(--white);
  border-radius:var(--radius-lg);
  padding:28px 30px;
}
.contact-hours-card h3{ color:var(--white); font-size:16px; margin-bottom:16px; }
.hours-list{ display:flex; flex-direction:column; gap:12px; }
.hours-list li{
  display:flex; justify-content:space-between;
  font-size:14px; color:rgba(255,255,255,0.85);
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,0.12);
}
.hours-list li:last-child{ border-bottom:none; padding-bottom:0; }
.hours-list li span:first-child{ font-weight:600; color:var(--white); }

/* =========================================================
   Responsive
========================================================= */
@media screen and (max-width: 1200px){
  .hero-inner, .why-inner, .facility-grid, .patients-grid{
    grid-template-columns:1fr 1fr;
  }
  .quote-inner{ text-align:center; }
  .quote-avatar{ margin:0 auto; }
  .quote-author{ justify-content:center; }
  .cards-grid{ grid-template-columns:repeat(2,1fr); }
  .pricing-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .why-points{ grid-template-columns:1fr; }
  .facility-photo{ min-height:280px; }
  .footer-grid{ grid-template-columns:1fr 1fr 1fr; }
  .patients-photos{ margin-top:20px; }
}

@media screen and (max-width: 768px){
  .main-nav, .header-phone{ display:none; }
  .hamburger{ display:flex; }
  .main-nav.is-open{
    display:flex; flex-direction:column;
    position:absolute; top:78px; left:0; right:0;
    background:var(--white); padding:20px 24px; gap:16px;
    border-bottom:1px solid var(--line);
  }
  .patients-photos{overflow: hidden;}
  .footer-grid{ grid-template-columns:1fr; }
  .hero, .quote-section, .specializations, .why-choose, .facility, .patients, .cta{padding-top: 50px; padding-bottom: 50px;}
  .site-footer { padding: 50px 20px 20px 20px;}

}

@media screen and (max-width: 480px){
  .container{grid-template-columns: auto;}
  .cards-grid{ grid-template-columns:1fr; }
  .hero{ padding:56px 15px 64px; }
  .hero-photo{ width:90%; }
  .floaty{ width:42px; height:42px; }
  .p1,.p2,.p3{ width:110px; height:140px; }
  .patients-photos{ height:240px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .quote-body p { font-size: 16px; font-weight: 500; line-height: 1.2; max-width: fit-content; }
  .quote-section { padding: 50px 0; }
  .specializations { padding: 50px 0; }
  .why-choose{ padding-top: 50px; padding-bottom: 50px}
  .facility{padding-top: 50px; padding-bottom: 50px;}
  .facility-grid {display: block;}
  .facility-info .btn { width: auto; }
  .patients {padding-top: 50px; padding-bottom: 50px;}
  .patients-grid {gap: 14px;}
  .rating-chip {right: unset;}
  .cta {padding-top: 50px; padding-bottom: 50px;}
  .site-footer {padding:50px 20px 35px 20px;}

}

/* =========================================================
   Responsive — inner pages
========================================================= */
@media screen and (max-width: 768px){
  .service-detail-grid{ grid-template-columns:1fr; }
  .service-detail-photo{ order:-1; }
  .why-inner--light .why-points{ grid-template-columns:1fr; }
  .contact-main-grid{ grid-template-columns:1fr; }
  .contact-info-grid{ grid-template-columns:1fr; }
  .service-detail {padding-top:60px;padding-bottom: 60px;}
  .page-hero{ padding:80px 0 80px; }
}

@media screen and (max-width: 480px){
  .page-hero{ padding:60px 0 60px; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form .btn{ width:100%; }
  .service-detail {padding-top:60px;padding-bottom: 60px;}
  .why-inner{gap:30px}
}
