/* ============================================
   AK ENT ZONE — Global Stylesheet
   International-standard hospital UI
   ============================================ */

:root{
  --brand-blue: #ADD8E6;
  --brand-blue-dark: #3E8FB5;
  --brand-blue-deep: #2C6E8F;
  --navy: #0A3556;
  --navy-deep: #062338;
  --ink: #182530;
  --slate: #56697A;
  --slate-light: #7B8B99;
  --bg-soft: #F2F8FB;
  --bg-soft-2: #EAF3F7;
  --white: #FFFFFF;
  --gold: #C7A24A;
  --accent-orange: #F2994A;
  --accent-red: #E0503A;
  --accent-green: #17945F;
  --border: #E1EDF2;
  --border-strong: #CFE1E9;
  --shadow-xs: 0 1px 3px rgba(8,38,62,0.06);
  --shadow-sm: 0 4px 16px rgba(8,38,62,0.08);
  --shadow-md: 0 16px 40px rgba(8,38,62,0.14);
  --shadow-lg: 0 30px 70px rgba(8,38,62,0.20);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --container: 1200px;
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  --grad-blue: linear-gradient(135deg, var(--brand-blue-dark) 0%, var(--brand-blue-deep) 100%);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4{
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p{ margin: 0 0 1em; color: var(--slate); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
::selection{ background: var(--brand-blue); color: var(--navy); }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.section{ padding: 96px 0; }
.section--soft{ background: var(--bg-soft); }
.section--navy{
  background: var(--grad-navy);
  color: var(--white);
  position:relative;
  overflow:hidden;
}
.section--navy::before{
  content:'';
  position:absolute;
  top:-120px; right:-120px;
  width:420px; height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(173,216,230,0.14) 0%, transparent 70%);
  pointer-events:none;
}
.section--navy::after{
  content:'';
  position:absolute;
  bottom:-160px; left:-100px;
  width:380px; height:380px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(173,216,230,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.section--navy h2, .section--navy h3{ color: var(--white); }
.section--navy p{ color: #C4D8E3; }
.section--navy .container{ position:relative; z-index:1; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--brand-blue);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow::before{
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background: var(--navy);
  flex-shrink:0;
}
.section--navy .eyebrow{ background: rgba(173,216,230,0.14); color: var(--brand-blue); }
.section--navy .eyebrow::before{ background: var(--brand-blue); }

.section-head{
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2{ font-size: clamp(29px, 3.4vw, 40px); }
.section-head p{ font-size: 17px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-primary{
  background: var(--grad-navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(10,53,86,0.28);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 16px 32px rgba(10,53,86,0.36); }
.btn-whatsapp{
  background: linear-gradient(135deg, #2BE370 0%, #1FA855 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31,168,85,0.32);
}
.btn-whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 16px 32px rgba(31,168,85,0.4); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-outline-navy{
  background: var(--white);
  border-color: var(--border-strong);
  color: var(--navy);
}
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-block{ width: 100%; }
.btn svg{ width: 18px; height: 18px; flex-shrink:0; }

/* ---------- Top bar ---------- */
.topbar{
  background: var(--navy-deep);
  color: #C4D8E3;
  font-size: 13.5px;
  letter-spacing:.01em;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-item{ display:flex; align-items:center; gap:7px; font-weight:500; }
.topbar-item svg{ width:15px; height:15px; color: var(--brand-blue); flex-shrink:0; }
.topbar-links{ display:flex; gap:22px; }
.topbar-links a{ font-weight:600; }
.topbar a:hover{ color: var(--brand-blue); }

/* ---------- Header / Nav ---------- */
header.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(8,38,62,0.02);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 13px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-logo{
  display:flex;
  align-items:center;
  height: 52px;
}
.brand-logo img{ height: 100%; width:auto; }
.brand-text{ line-height:1.15; }
.brand-text strong{ display:block; font-family:'Plus Jakarta Sans',sans-serif; font-size:19.5px; color:var(--navy); font-weight:800; letter-spacing:-0.01em; }
.brand-text span{ display:block; font-size:11px; color:var(--slate-light); text-transform:uppercase; letter-spacing:.1em; font-weight:600; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 4px;
}
.nav-links a{
  font-weight:600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  position:relative;
  transition: all .18s ease;
}
.nav-links a:hover{ background: var(--bg-soft); color: var(--navy); }
.nav-links a.active{ color: var(--navy); background: var(--brand-blue); }

.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-cta .btn{ padding: 12px 24px; font-size:14px; }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  width:40px; height:40px;
  align-items:center;
  justify-content:center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:'';
  display:block;
  width:22px; height:2px;
  border-radius:2px;
  background: var(--navy);
  position:relative;
  transition: all .2s ease;
}
.nav-toggle span::before{ position:absolute; top:-7px; }
.nav-toggle span::after{ position:absolute; top:7px; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}
.hero::before{
  content:'';
  position:absolute;
  top:-180px; left:-160px;
  width:480px; height:480px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(173,216,230,0.45) 0%, transparent 70%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-220px; right:-200px;
  width:520px; height:520px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(62,143,181,0.10) 0%, transparent 70%);
  pointer-events:none;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero h1{
  font-size: clamp(33px, 4.4vw, 53px);
  margin-bottom: 22px;
}
.hero h1 em{
  font-style: normal;
  color: var(--brand-blue-deep);
  position:relative;
}
.hero-lede{ font-size: 18px; max-width: 520px; }
.hero-actions{ display:flex; gap:16px; margin: 30px 0 36px; flex-wrap:wrap; }
.hero-stats{
  display:flex;
  gap: 0;
  flex-wrap:wrap;
}
.hero-stat{ padding-right:32px; margin-right:32px; border-right:1px solid var(--border-strong); }
.hero-stat:last-child{ border-right:none; margin-right:0; padding-right:0; }
.hero-stat strong{ display:block; font-family:'Plus Jakarta Sans',sans-serif; font-size:28px; font-weight:800; color:var(--navy); }
.hero-stat span{ font-size:12.5px; color:var(--slate-light); font-weight:600; }

.hero-media{ position:relative; }
.hero-media-frame{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.3;
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
}
.hero-media-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-badge{
  position:absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display:flex;
  align-items:center;
  gap:13px;
  max-width: 250px;
}
.hero-badge .ico{
  width:46px; height:46px;
  background: var(--grad-blue);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-shadow: 0 6px 16px rgba(62,143,181,0.4);
}
.hero-badge .ico svg{ width:22px; height:22px; color:var(--white); }
.hero-badge strong{ display:block; font-size:15px; color:var(--navy); }
.hero-badge span{ font-size:12.5px; color:var(--slate); }

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--white);
  position:relative;
  z-index:2;
  margin-top:-38px;
}
.trust-strip .container{ padding-left:24px; padding-right:24px; }
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  padding: 8px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 20px 18px;
  border-radius: var(--radius-sm);
  transition: background .2s ease;
}
.trust-item:hover{ background: var(--bg-soft); }
.trust-item .ico{
  width:48px; height:48px;
  background: var(--brand-blue);
  border-radius: 13px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.trust-item .ico svg{ width:24px; height:24px; color: var(--navy); }
.trust-item strong{ display:block; font-size:14.5px; color:var(--navy); font-weight:700; }
.trust-item span{ font-size:12.5px; color:var(--slate-light); }

/* ---------- Cards / Grids ---------- */
.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }

.service-card .ico{
  width:58px; height:58px;
  border-radius: 15px;
  background: var(--brand-blue);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
  transition: background .25s ease;
}
.service-card:hover .ico{ background: var(--grad-blue); }
.service-card:hover .ico svg{ color: var(--white); }
.service-card .ico svg{ width:28px; height:28px; color: var(--navy); transition: color .25s ease; }
.service-card h3{ font-size:18.5px; margin-bottom:9px; }
.service-card p{ font-size:14.5px; margin-bottom: 16px; }
.service-card .more{ font-size:13.5px; font-weight:700; color: var(--navy); display:inline-flex; align-items:center; gap:6px; }
.service-card .more svg{ width:14px; height:14px; transition: transform .2s ease; }
.service-card:hover .more svg{ transform: translateX(4px); }

.value-card{ text-align:center; }
.value-card .ico{ margin: 0 auto 18px; }

/* ---------- Doctor ---------- */
.doctor-split{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 56px;
  align-items:center;
}
.doctor-photo{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  outline: 1px solid var(--border);
}
.doctor-photo img{ width:100%; }
.doctor-name{ font-size:27px; margin-bottom:3px; }
.doctor-role{ color: var(--brand-blue-deep); font-weight:700; font-size:14.5px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:20px; display:block; }
.doctor-tags{ display:flex; flex-wrap:wrap; gap:10px; margin: 20px 0 24px; }
.doctor-tags span{
  background: var(--bg-soft);
  border:1px solid var(--border-strong);
  color: var(--navy);
  font-size:13px;
  font-weight:700;
  padding: 8px 16px;
  border-radius:999px;
}
.quote-block{
  border-left: 3px solid var(--brand-blue-deep);
  background: var(--bg-soft);
  padding: 16px 22px;
  margin: 22px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Doctor profile (About page) */
.doctor-profile{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items:flex-start;
  background: var(--white);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.doctor-profile .photo{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.doctor-profile .photo img{ width:100%; }
.doctor-photo-placeholder{
  width:100%;
  aspect-ratio: 3/3.6;
  border-radius: var(--radius);
  background: var(--grad-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: var(--shadow-sm);
}
.doctor-photo-placeholder svg{ width:74px; height:74px; color:var(--white); opacity:.9; }
.doctor-profile .philosophy-list li{
  display:flex; gap:10px; padding: 7px 0; color: var(--slate); font-size:14.5px;
}
.doctor-profile .philosophy-list svg{ width:16px; height:16px; color: var(--accent-green); flex-shrink:0; margin-top:3px; }

/* ---------- Why choose ---------- */
.reason-row{
  display:flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.reason-row:last-child{ border-bottom:none; }
.reason-num{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size: 15px;
  font-weight:800;
  color: var(--navy);
  background: var(--brand-blue);
  min-width: 42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.reason-row h4{ font-size: 16.5px; margin-bottom: 6px; color: var(--navy); }
.reason-row p{ font-size: 14.5px; margin:0; }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 54px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
  color: var(--white);
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  top:-100px; right:-80px;
  width:320px; height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(173,216,230,0.16) 0%, transparent 70%);
  pointer-events:none;
}
.cta-band > *{ position:relative; z-index:1; }
.cta-band h3{ color: var(--white); font-size: 27px; margin-bottom:8px; }
.cta-band p{ color:#C4D8E3; margin:0; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Services accordion ---------- */
.service-accordion{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow:hidden;
  background: var(--white);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.service-accordion.open{ box-shadow: var(--shadow-sm); border-color: var(--border-strong); }
.acc-head{
  display:flex;
  align-items:center;
  gap: 18px;
  padding: 23px 26px;
  cursor:pointer;
  background: var(--white);
  transition: background .2s ease;
}
.acc-head:hover{ background: var(--bg-soft); }
.acc-num{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:800;
  color: var(--white);
  background: var(--grad-blue);
  width:40px; height:40px;
  border-radius:11px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-size:15px;
}
.acc-head h3{ margin:0; font-size:17.5px; flex:1; }
.acc-chevron{ width:20px; height:20px; color:var(--navy); flex-shrink:0; transition: transform .25s ease; }
.service-accordion.open .acc-chevron{ transform: rotate(180deg); }
.acc-body{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
  background: var(--bg-soft);
}
.acc-body-inner{
  padding: 6px 26px 26px 84px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.acc-body-inner li{
  font-size:14.5px;
  color: var(--slate);
  padding: 6px 0 6px 20px;
  position:relative;
}
.acc-body-inner li::before{
  content:'';
  position:absolute;
  left:0; top:14px;
  width:8px; height:8px;
  border-radius:50%;
  background: var(--brand-blue-dark);
}

/* ---------- Exclusive Services ---------- */
.excl-chip-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:30px;
}
.excl-chip{
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  color: var(--navy);
  font-weight:700;
  font-size:14px;
  padding: 12px 24px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:9px;
  box-shadow: var(--shadow-xs);
  transition: all .2s ease;
}
.excl-chip:hover{ border-color: var(--brand-blue-dark); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.excl-chip svg{ width:17px; height:17px; color:var(--brand-blue-dark); flex-shrink:0; }

.excl-feature{
  display:flex;
  gap:28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.excl-feature:first-child{ padding-top:0; }
.excl-feature:last-child{ border-bottom:none; padding-bottom:0; }
.excl-feature .ico{
  width:66px; height:66px;
  border-radius:17px;
  background: var(--brand-blue);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.excl-feature .ico svg{ width:30px; height:30px; color:var(--navy); }
.excl-feature-num{
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:12.5px;
  font-weight:700;
  color: var(--brand-blue-deep);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:5px;
  display:block;
}
.excl-feature h3{ font-size:20px; margin-bottom:10px; }
.excl-feature p{ font-size:15px; margin:0; }

.excl-tagline{
  text-align:center;
  background: var(--grad-navy);
  color:#fff;
  padding: 48px 30px;
  border-radius: var(--radius-lg);
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight:700;
  line-height:1.5;
  position:relative;
  overflow:hidden;
}
.excl-tagline::before{
  content:'';
  position:absolute;
  top:-100px; left:-80px;
  width:280px; height:280px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(173,216,230,0.14) 0%, transparent 70%);
}
.excl-tagline span{ color: var(--brand-blue); position:relative; }

/* ---------- Contact ---------- */
.branch-card{
  background: var(--white);
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s ease, transform .25s ease;
}
.branch-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-4px); }
.branch-card .map{ height: 220px; background:#dce9ee; }
.branch-card .map iframe{ width:100%; height:100%; border:0; }
.branch-card .body{ padding: 26px 28px 30px; }
.branch-tag{
  display:inline-block;
  background: var(--brand-blue);
  color: var(--navy);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:14px;
}
.branch-card h3{ font-size:19px; margin-bottom:12px; }
.branch-line{ display:flex; gap:10px; align-items:flex-start; margin-bottom:11px; font-size:14.5px; color:var(--slate); }
.branch-line svg{ width:18px; height:18px; color:var(--brand-blue-dark); flex-shrink:0; margin-top:2px; }
.branch-actions{ display:flex; gap:10px; margin-top:18px; flex-wrap:wrap; }
.branch-actions .btn{ padding: 11px 20px; font-size:13.5px; }

.contact-form-wrap{
  background: var(--white);
  border:1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}
.form-row{ margin-bottom: 22px; }
.form-row label{
  display:block;
  font-size: 13px;
  font-weight:700;
  color: var(--navy);
  margin-bottom: 9px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  padding: 14px 17px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family:inherit;
  color: var(--ink);
  background: var(--bg-soft);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline:none;
  border-color: var(--brand-blue-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(62,143,181,0.12);
}
.form-row textarea{ resize: vertical; min-height: 100px; }
.form-hint{ font-size:12.5px; color:var(--slate-light); margin-top:6px; }
.form-error{ font-size:12.5px; color: var(--accent-red); margin-top:6px; display:none; font-weight:600; }
.form-row.invalid input,
.form-row.invalid select{ border-color: var(--accent-red); }
.form-row.invalid .form-error{ display:block; }
.form-success{
  display:none;
  align-items:center;
  gap:12px;
  background:#E7F8EF;
  border:1px solid #B9E7CE;
  color:#0F6B45;
  padding:17px 19px;
  border-radius: var(--radius-sm);
  font-size:14.5px;
  font-weight:600;
  margin-top:20px;
}
.form-success svg{ width:22px; height:22px; flex-shrink:0; }

.quick-call-strip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px 34px;
  margin-bottom: 52px;
  box-shadow: var(--shadow-xs);
}
.quick-call-strip h4{ margin:0 0 4px; font-size:17.5px; color:var(--navy); }
.quick-call-strip p{ margin:0; font-size:14px; color:var(--slate); }
.quick-call-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp{
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 600;
  width: 62px; height: 62px;
  background: linear-gradient(135deg, #2BE370 0%, #1FA855 100%);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px rgba(31,168,85,0.5);
  animation: pulse-wa 2.4s infinite;
}
.float-whatsapp svg{ width: 30px; height:30px; color:#fff; }
@keyframes pulse-wa{
  0%{ box-shadow: 0 0 0 0 rgba(31,168,85,0.5); }
  70%{ box-shadow: 0 0 0 16px rgba(31,168,85,0); }
  100%{ box-shadow: 0 0 0 0 rgba(31,168,85,0); }
}

/* ---------- Footer ---------- */
footer.site-footer{
  background: var(--navy-deep);
  color: #A9C0CC;
  padding-top: 68px;
  position:relative;
  overflow:hidden;
}
footer.site-footer::before{
  content:'';
  display:block;
  height:4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-blue-dark) 50%, var(--brand-blue) 100%);
  position:absolute;
  top:0; left:0; right:0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-brand .brand-logo{ background:#fff; border-radius:13px; padding:7px 11px; height:52px; box-shadow: var(--shadow-sm); }
.footer-brand strong{ color:#fff; font-family:'Plus Jakarta Sans',sans-serif; font-size:18.5px; font-weight:800; }
.footer-col h5{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:20px; font-weight:700; }
.footer-col ul li{ margin-bottom: 12px; font-size:14.5px; }
.footer-col ul li a:hover{ color: var(--brand-blue); }
.footer-col p{ color:#8FA8B4; font-size:14px; }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; margin-bottom:15px; }
.footer-contact svg{ width:17px; height:17px; color: var(--brand-blue); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 24px 0;
  font-size: 13px;
  color:#7B94A1;
  flex-wrap:wrap;
  gap:10px;
}

/* ---------- Page header (About/Services/Contact) ---------- */
.page-hero{
  background: var(--grad-navy);
  padding: 68px 0 60px;
  text-align:center;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.page-hero h1{ color:#fff; font-size: clamp(30px,4vw,44px); margin-bottom:12px; }
.page-hero p{ color:#C4D8E3; max-width:560px; margin:0 auto; }
.breadcrumb{ font-size:13.5px; color: var(--brand-blue); margin-bottom:16px; display:flex; gap:8px; justify-content:center; }
.breadcrumb span{ color:#9DB4C0; }

/* ---------- Utilities ---------- */
.mt-0{ margin-top:0 !important; }
.text-center{ text-align:center; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .nav-links{
    position: fixed;
    top: 80px; left:0; right:0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 26px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform-origin: top;
    transform: scaleY(0);
    opacity:0;
    pointer-events:none;
    transition: all .18s ease;
  }
  .nav-links.open{ transform:scaleY(1); opacity:1; pointer-events:auto; }
  .nav-links a{ width:100%; padding: 13px 14px; border-radius:12px; }
  .nav-links a.active{ background: var(--brand-blue); }
  .nav-cta .btn span{ display:none; }
  .nav-toggle{ display:flex; }
  .hero .container{ grid-template-columns: 1fr; padding-top:44px; padding-bottom: 56px;}
  .hero-media{ order:-1; max-width:380px; margin:0 auto; }
  .trust-strip{ margin-top:28px; }
  .trust-grid{ grid-template-columns: repeat(2,1fr); }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .doctor-split{ grid-template-columns: 1fr; }
  .doctor-profile{ grid-template-columns: 1fr; }
  .doctor-profile .photo{ max-width:240px; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .acc-body-inner{ grid-template-columns: 1fr; padding-left:26px; }
  .acc-head{ padding: 18px; }
  .excl-feature{ flex-direction:column; gap:16px; }
}
@media (max-width: 640px){
  .section{ padding: 64px 0; }
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .topbar .container{ justify-content:center; text-align:center; }
  .topbar-links{ gap:14px; }
  .cta-band{ padding: 36px 26px; flex-direction:column; text-align:center; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .contact-form-wrap{ padding: 28px; }
  .quick-call-strip{ flex-direction:column; align-items:flex-start; }
  .hero-stats{ gap:0; }
  .hero-stat{ padding-right:20px; margin-right:20px; }
}
