/* ============================================================
   DR MANOJ SHAH DENTAL CARE — CUSTOM THEME CSS
   /ui-ux-pro-max/ build
   ============================================================ */

:root {
  --primary:       #1565C0;
  --primary-dark:  #0D47A1;
  --primary-light: #1E88E5;
  --accent:        #00BCD4;
  --accent-light:  #E0F7FA;
  --white:         #ffffff;
  --off-white:     #F8FAFB;
  --light:         #EEF4FF;
  --muted:         #94A3B8;
  --body:          #475569;
  --dark:          #0F1A2E;
  --gold:          #F5A623;
  --success:       #22C55E;
  --wa-green:      #25D366;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(21,101,192,.14);
  --shadow-xl:  0 20px 60px rgba(21,101,192,.18);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .3s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); }
h3 { font-size: clamp(1.1rem,2vw,1.45rem); }

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 90px 0; }
.section-sm  { padding: 56px 0; }
.section-lg  { padding: 110px 0; }
.section-header { margin-bottom: 56px; }
.section-header.tc { text-align: center; }
.section-header.tc p { margin: 0 auto; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 560px; font-size: 1rem; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif; font-size: .875rem; font-weight: 600;
  border: 2px solid transparent; transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(21,101,192,.35);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(21,101,192,.45);
}
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--primary); border-color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--light); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 4px 18px rgba(0,188,212,.35);
}
.btn-accent:hover { background: #00ACC1; transform: translateY(-2px); }
.btn-lg { padding: 16px 38px; font-size: 1rem; }
.btn-wa {
  background: var(--wa-green); color: #fff; border-color: var(--wa-green);
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
}
.btn-wa:hover { background: #1DA851; transform: translateY(-2px); }

/* ── Cards ── */
.card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05); transition: all var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }

/* ── Site Header ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: all var(--dur) var(--ease);
}
.header-top {
  background: var(--primary-dark); padding: 8px 0;
}
.header-top-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.header-top-info { display: flex; gap: 20px; flex-wrap: wrap; }
.header-top-info a, .header-top-hours {
  color: rgba(255,255,255,.8); font-size: .78rem;
  font-family: 'Manrope', sans-serif;
  display: flex; align-items: center; gap: 6px;
  transition: color var(--dur) var(--ease);
}
.header-top-info a:hover { color: #fff; }
.header-top-actions { display: flex; gap: 8px; }
.header-top-actions a {
  color: rgba(255,255,255,.7); font-size: .8rem;
  padding: 3px 10px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.2);
  transition: all var(--dur) var(--ease);
}
.header-top-actions a:hover { background: rgba(255,255,255,.15); color: #fff; }

.header-main { background: #fff; padding: 14px 0; box-shadow: 0 1px 0 rgba(0,0,0,.06); }
#site-header.scrolled .header-top { display: none; }
#site-header.scrolled .header-main { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.site-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 46px; height: 46px; background: var(--primary);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-text span { color: var(--primary); }
.logo-sub { font-family: 'Manrope', sans-serif; font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: 'Manrope', sans-serif; font-size: .875rem; font-weight: 500;
  color: var(--dark); padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease); position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--light); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Manrope', sans-serif; font-weight: 700;
  color: var(--primary); font-size: .9rem;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--dur) var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 800;
  opacity: 0; visibility: hidden; transition: all var(--dur) var(--ease);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 290px;
  background: #fff; padding: 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--dur) var(--ease);
}
.mobile-nav-overlay.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav-close {
  width: 36px; height: 36px; background: var(--light);
  border-radius: 50%; font-size: 1.2rem; color: var(--dark);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.mobile-nav-close:hover { background: var(--primary); color: #fff; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: block; padding: 13px 16px; border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif; font-size: .95rem; font-weight: 500;
  color: var(--dark); border-bottom: 1px solid rgba(0,0,0,.05);
  transition: all var(--dur) var(--ease);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--primary); background: var(--light); padding-left: 22px; }
.mobile-nav-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-contact { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,.06); }
.mobile-nav-contact a { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--primary); font-weight: 600; padding: 8px 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 120px; padding-bottom: 60px;
  background: linear-gradient(135deg, #EBF2FF 0%, #DBEAFE 45%, #E0F2FE 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21,101,192,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -120px; left: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,188,212,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 2;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(21,101,192,.18);
  padding: 7px 18px; border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700;
  color: var(--primary); margin-bottom: 20px; box-shadow: var(--shadow-sm);
  animation: fadeUp .6s .1s both;
}
.hero-pill span { color: var(--accent); }
.hero h1 { margin-bottom: 20px; animation: fadeUp .6s .2s both; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero-desc {
  font-size: 1.05rem; line-height: 1.8; color: var(--body);
  max-width: 480px; margin-bottom: 36px; animation: fadeUp .6s .3s both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp .6s .4s both; }
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 1px solid rgba(21,101,192,.12); animation: fadeUp .6s .5s both; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; display: block; }
.stat-label { font-family: 'Manrope', sans-serif; font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; display: block; }

.hero-image-wrap { position: relative; animation: fadeUp .8s .2s both; }
.hero-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--primary); box-shadow: var(--shadow-xl);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  background: linear-gradient(135deg, #1565C0 0%, #1E88E5 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.7); font-size: .85rem; font-family: 'Manrope', sans-serif;
}
.hero-img-placeholder span { font-size: 3.5rem; }

.hero-float {
  position: absolute; background: #fff; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,.06);
}
.hero-float-exp {
  top: 28px; left: -44px; text-align: center; min-width: 110px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-float-exp .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); display: block; line-height: 1; }
.hero-float-exp .sm  { font-size: .68rem; color: var(--body); font-family: 'Manrope', sans-serif; font-weight: 600; max-width: 80px; display: block; margin: 4px auto 0; }

.hero-float-rating {
  bottom: 44px; right: -36px;
  display: flex; align-items: center; gap: 12px;
  animation: floatY 4s 1s ease-in-out infinite;
}
.rating-avs { display: flex; }
.rating-avs .av {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff;
  background: var(--accent-light); margin-left: -8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--primary);
}
.rating-avs .av:first-child { margin-left: 0; }
.rating-stars { color: var(--gold); font-size: .78rem; letter-spacing: 1px; }
.rating-text { font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 700; color: var(--dark); }
.rating-sub  { font-size: .65rem; color: var(--muted); }

/* ── INFO BAR ── */
.info-bar { background: var(--primary); padding: 22px 0; }
.info-bar-inner { display: flex; align-items: center; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.info-bar-item { display: flex; align-items: center; gap: 12px; }
.ib-icon { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ib-text h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: .875rem; font-weight: 600; margin: 0; }
.ib-text p  { color: rgba(255,255,255,.72); font-size: .75rem; margin: 0; font-family: 'Manrope', sans-serif; }
.ib-divider { width: 1px; height: 38px; background: rgba(255,255,255,.2); }

/* ── ABOUT ── */
.about-section { background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 3/4; background: var(--accent-light); box-shadow: var(--shadow-xl); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { width: 100%; height: 100%; min-height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: linear-gradient(135deg, var(--accent-light), var(--light)); }
.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--primary); color: #fff; padding: 22px 26px;
  border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge .n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; display: block; line-height: 1; }
.about-badge .l { font-size: .72rem; opacity: .85; font-family: 'Manrope', sans-serif; font-weight: 500; margin-top: 4px; display: block; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.af-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--off-white); border-radius: var(--radius-sm); transition: background var(--dur) var(--ease); }
.af-item:hover { background: var(--accent-light); }
.af-icon { width: 34px; height: 34px; background: var(--primary); color: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.af-item h4 { font-family: 'Manrope', sans-serif; font-size: .825rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.af-item p { font-size: .74rem; line-height: 1.4; color: var(--body); }
.trustpilot-row { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--off-white); border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,.06); }
.tp-stars { color: #00B67A; letter-spacing: 2px; font-size: .9rem; }
.tp-label { font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 700; color: var(--dark); }
.tp-sub   { font-size: .7rem; color: var(--muted); }

/* ── SERVICES ── */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid rgba(0,0,0,.05); box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease); position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transition: transform var(--dur) var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 62px; height: 62px; background: var(--accent-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 18px; transition: background var(--dur) var(--ease); }
.svc-card:hover .svc-icon { background: var(--primary); }
.svc-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.svc-card p  { font-size: .84rem; line-height: 1.65; color: var(--body); margin-bottom: 14px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 700; color: var(--primary); transition: gap var(--dur) var(--ease); }
.svc-link:hover { gap: 10px; }

/* ── WHY CHOOSE US ── */
.why-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(0,188,212,.12) 0%, transparent 60%);
}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.why-img-wrap { position: relative; }
.why-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.why-img-main img { width: 100%; object-fit: cover; display: block; }
.why-img-placeholder { background: rgba(255,255,255,.1); min-height: 340px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 70px; height: 70px; background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary);
  box-shadow: 0 0 0 14px rgba(255,255,255,.18); cursor: pointer; transition: all var(--dur) var(--ease);
  animation: pulseRing 2.5s infinite;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); }
.clinic-badge {
  position: absolute; bottom: 24px; left: 24px; background: #fff; padding: 14px 18px;
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg);
}
.clinic-badge .icon { font-size: 1.4rem; }
.clinic-badge .lb  { font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700; color: var(--dark); display: block; }
.clinic-badge .sl  { font-size: .68rem; color: var(--muted); display: block; }

.why-content .eyebrow { color: var(--accent); }
.why-content .eyebrow::before { background: rgba(255,255,255,.4); }
.why-content h2 { color: #fff; margin-bottom: 14px; }
.why-content > p { color: rgba(255,255,255,.78); margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px;
  background: rgba(255,255,255,.08); border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12); transition: all var(--dur) var(--ease); backdrop-filter: blur(8px);
}
.why-item:hover { background: rgba(255,255,255,.15); transform: translateX(6px); }
.wi-icon { width: 42px; height: 42px; background: rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--accent); flex-shrink: 0; }
.why-item h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.why-item p  { color: rgba(255,255,255,.7); font-size: .8rem; line-height: 1.5; }

/* ── DOCTORS ── */
.doctors-section { background: #fff; }
.doctors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.doc-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); transition: all var(--dur) var(--ease); text-align: center; }
.doc-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.doc-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--accent-light); display: block; }
.doc-img-ph { width: 100%; aspect-ratio: 3/4; background: linear-gradient(135deg, var(--accent-light), var(--light)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.doc-info { padding: 22px 18px; }
.doc-info h3 { font-size: 1rem; margin-bottom: 4px; }
.doc-spec { font-family: 'Manrope', sans-serif; font-size: .78rem; color: var(--primary); font-weight: 600; margin-bottom: 12px; display: block; }
.doc-social { display: flex; justify-content: center; gap: 8px; }
.doc-social a { width: 32px; height: 32px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--dark); transition: all var(--dur) var(--ease); }
.doc-social a:hover { background: var(--primary); color: #fff; }

/* ── BEFORE AFTER ── */
.ba-section { background: var(--off-white); }
.ba-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ba-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-list { margin-bottom: 30px; }
.ba-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-family: 'Manrope', sans-serif; font-size: .875rem; color: var(--dark); font-weight: 500; }
.ba-item:last-child { border-bottom: none; }
.ba-check { width: 24px; height: 24px; background: var(--success); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; flex-shrink: 0; }

/* ── PROMO BANNER ── */
.promo-banner { background: linear-gradient(90deg, #FEF3C7, #FFF8E1); padding: 22px 0; border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold); }
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.promo-badge { background: var(--gold); color: #fff; padding: 5px 16px; border-radius: var(--radius-full); font-family: 'Manrope', sans-serif; font-size: .82rem; font-weight: 700; }
.promo-text { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: #fff; }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform .5s var(--ease); }
.testi-slide { min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 4px; }
.testi-card {
  background: var(--off-white); border-radius: var(--radius); padding: 28px 26px;
  border: 1px solid rgba(0,0,0,.05); transition: all var(--dur) var(--ease); position: relative;
}
.testi-card::before { content: '"'; position: absolute; top: 18px; right: 22px; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(21,101,192,.07); line-height: 1; }
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: var(--gold); letter-spacing: 2px; font-size: .88rem; margin-bottom: 12px; }
.testi-text { font-size: .875rem; line-height: 1.75; color: var(--body); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; overflow: hidden; }
.testi-name { font-family: 'Manrope', sans-serif; font-size: .875rem; font-weight: 700; color: var(--dark); display: block; }
.testi-role { font-size: .72rem; color: var(--muted); display: block; }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.slider-btn {
  width: 42px; height: 42px; border-radius: 50%; background: var(--light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all var(--dur) var(--ease); border: 1.5px solid rgba(21,101,192,.2); cursor: pointer;
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); transition: all var(--dur) var(--ease); cursor: pointer; border: none; }
.dot.active { width: 24px; border-radius: 4px; background: var(--primary); }

/* Partners */
.partners-bar { background: var(--off-white); padding: 38px 0; border-top: 1px solid rgba(0,0,0,.05); }
.partners-inner { display: flex; align-items: center; justify-content: space-around; gap: 28px; flex-wrap: wrap; }
.partner { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; opacity: .5; transition: opacity var(--dur) var(--ease); }
.partner:hover { opacity: 1; color: var(--primary); }

/* ── GALLERY ── */
.gallery-section { background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; background: var(--accent-light); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(21,101,192,.75); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--dur) var(--ease); font-size: 1.8rem; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-ph { width: 100%; height: 100%; min-height: 160px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; background: linear-gradient(135deg, var(--accent-light), var(--light)); }

/* ── PRICING ── */
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: center; }
.price-card {
  background: #fff; border-radius: var(--radius); padding: 36px 30px;
  border: 2px solid rgba(0,0,0,.06); transition: all var(--dur) var(--ease); position: relative;
}
.price-card.featured { background: var(--primary); border-color: var(--primary); transform: scale(1.04); box-shadow: var(--shadow-xl); }
.price-card:not(.featured):hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.popular-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-family: 'Manrope', sans-serif; font-size: .7rem; font-weight: 700;
  padding: 4px 16px; border-radius: var(--radius-full); white-space: nowrap;
}
.price-plan { font-family: 'Manrope', sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 8px; display: block; }
.price-card.featured .price-plan { color: rgba(255,255,255,.65); }
.price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-cur { font-family: 'Manrope', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.price-card.featured .price-cur { color: #fff; }
.price-amt { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--dark); line-height: 1; }
.price-card.featured .price-amt { color: #fff; }
.price-per { font-size: .8rem; color: var(--muted); font-family: 'Manrope', sans-serif; }
.price-card.featured .price-per { color: rgba(255,255,255,.6); }
.price-desc { font-size: .8rem; color: var(--body); margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid rgba(0,0,0,.06); }
.price-card.featured .price-desc { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.15); }
.price-feats { margin-bottom: 26px; }
.pf-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: .84rem; color: var(--body); font-family: 'Manrope', sans-serif; }
.price-card.featured .pf-item { color: rgba(255,255,255,.85); }
.pf-chk { color: var(--success); font-size: .88rem; flex-shrink: 0; }
.price-card.featured .pf-chk { color: #86EFAC; }
.pf-x { color: var(--muted); font-size: .88rem; flex-shrink: 0; }

/* ── FAQ ── */
.faq-section { background: var(--off-white); }
.faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--dur) var(--ease); }
.faq-item.open { border-color: rgba(21,101,192,.25); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: .88rem; font-weight: 600; color: var(--dark);
  background: #fff; user-select: none; transition: background var(--dur) var(--ease);
}
.faq-item.open .faq-q { background: var(--accent-light); color: var(--primary); }
.faq-toggle {
  width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; background: #fff;
  font-size: .86rem; color: var(--body); line-height: 1.72;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 16px 20px; }
.faq-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); background: var(--accent-light); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; font-size: 6rem; }
.faq-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── BLOG ── */
.blog-section { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,.05); transition: all var(--dur) var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.blog-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: var(--accent-light); }
.blog-thumb-ph { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; background: linear-gradient(135deg, var(--accent-light), var(--light)); }
.blog-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-cat { font-family: 'Manrope', sans-serif; font-size: .68rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; }
.blog-date { font-size: .72rem; color: var(--muted); font-family: 'Manrope', sans-serif; }
.blog-body h3 { font-size: .98rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: .82rem; color: var(--body); line-height: 1.65; margin-bottom: 14px; }
.blog-more { display: inline-flex; align-items: center; gap: 6px; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 700; color: var(--primary); transition: gap var(--dur) var(--ease); }
.blog-more:hover { gap: 10px; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-dets { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon { width: 46px; height: 46px; background: var(--accent-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); flex-shrink: 0; }
.cd-item h4 { font-family: 'Manrope', sans-serif; font-size: .875rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.cd-item p  { font-size: .82rem; color: var(--body); line-height: 1.5; }
.cd-item a  { color: var(--primary); font-weight: 600; }
.contact-social { display: flex; gap: 10px; margin-top: 10px; }
.contact-social a { width: 38px; height: 38px; background: var(--light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--dark); transition: all var(--dur) var(--ease); }
.contact-social a:hover { background: var(--primary); color: #fff; }
.contact-form-wrap { background: #fff; padding: 38px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,.05); }
.contact-form-wrap h3 { margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-family: 'Manrope', sans-serif; font-size: .8rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm); font-size: .875rem; color: var(--dark);
  background: #fff; transition: border-color var(--dur) var(--ease); font-family: 'Inter', sans-serif;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,101,192,.11); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ── MAP ── */
.map-section { height: 420px; background: var(--light); overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }
.map-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--primary); background: linear-gradient(135deg, var(--accent-light), var(--light)); font-size: 3.5rem; }
.map-ph p { font-family: 'Manrope', sans-serif; font-size: .875rem; color: var(--body); }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 60%, #00BCD4 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-inner { position: relative; z-index: 2; }
.cta-section .eyebrow { color: var(--accent); justify-content: center; }
.cta-section .eyebrow::before { background: rgba(255,255,255,.4); }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 34px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); color: #fff; }
.footer-main { padding: 62px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-about { max-width: 290px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-about p { color: rgba(255,255,255,.52); font-size: .85rem; line-height: 1.72; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .88rem; color: rgba(255,255,255,.6); transition: all var(--dur) var(--ease); }
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: .86rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.08); text-transform: uppercase; letter-spacing: .06em; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.52); font-size: .84rem; font-family: 'Manrope', sans-serif; transition: all var(--dur) var(--ease); display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: .68rem; opacity: 0; transition: opacity var(--dur) var(--ease); }
.footer-links a:hover::before { opacity: 1; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 13px; align-items: flex-start; }
.fci-icon { width: 30px; height: 30px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .78rem; color: var(--accent); flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a { color: rgba(255,255,255,.52); font-size: .8rem; line-height: 1.5; font-family: 'Manrope', sans-serif; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.38); font-size: .78rem; font-family: 'Manrope', sans-serif; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.38); font-size: .78rem; font-family: 'Manrope', sans-serif; transition: color var(--dur) var(--ease); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); padding: 140px 0 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 40%, rgba(0,188,212,.2) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.74); max-width: 480px; margin: 0 auto 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Manrope', sans-serif; font-size: .8rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: #fff; }
.bc-sep { color: rgba(255,255,255,.3); }
.bc-cur { color: #fff; }

/* ── FLOATING WIDGETS ── */
.wa-float {
  position: fixed; bottom: 90px; right: 24px; z-index: 600;
  width: 54px; height: 54px; background: var(--wa-green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); animation: pulseRing 2.5s infinite;
  transition: transform var(--dur) var(--ease); color: #fff;
}
.wa-float:hover { transform: scale(1.12); }
.wa-tooltip {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: #fff; padding: 6px 12px; border-radius: 6px;
  font-family: 'Manrope', sans-serif; font-size: .75rem; white-space: nowrap;
  opacity: 0; transition: opacity var(--dur) var(--ease); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

.appt-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 600;
}

.back-top {
  position: fixed; bottom: 160px; right: 26px; z-index: 500;
  width: 42px; height: 42px; background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: var(--shadow-lg); cursor: pointer;
  opacity: 0; visibility: hidden; transition: all var(--dur) var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseRing { 0%  { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all var(--dur) var(--ease); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: 0 0 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; background: rgba(255,255,255,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; cursor: pointer; transition: background var(--dur) var(--ease); }
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner, .about-inner, .why-inner, .ba-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap, .why-img-wrap { order: -1; }
  .hero-float-exp  { left: 0; }
  .hero-float-rating { right: 0; }
  .about-badge { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .price-card.featured { transform: scale(1); }
  .testi-slide { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav, .header-call { display: none; }
  .hamburger { display: flex; }
  .header-top { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-about { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .info-bar-divider, .ib-divider { display: none; }
  .contact-form-wrap { padding: 24px 18px; }
  .hero-cta { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .promo-inner { flex-direction: column; gap: 8px; }
}

/* Print */
@media print { #site-header, .wa-float, .appt-float, .back-top, .site-footer { display: none; } }

/* ============================================================
   /ui-ux-pro-max/ TYPOGRAPHY & LAYOUT ENHANCEMENT PATCH
   ============================================================ */

/* ── Premium Google Fonts upgrade ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ── Root typographic scale upgrade ── */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-ui:      'Manrope', system-ui, sans-serif;
  --tracking-tight: -.02em;
  --tracking-wide:   .12em;
  --lh-heading: 1.15;
  --lh-body:    1.78;
}

/* ── Headings — tighter tracking, richer weight ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-heading);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.18;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* ── Hero headline upgrade ── */
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--primary);
  background: linear-gradient(135deg, #1565C0, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* ── Hero description ── */
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #3D5478;
  font-weight: 400;
  max-width: 500px;
}

/* ── Eyebrow labels — bolder, wider ── */
.eyebrow {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--primary);
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 3px;
}

/* ── Section headers — more breathing room ── */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5A6E8A;
  max-width: 580px;
}
.section-header.tc p { margin: 0 auto; }

/* ── Hero stat numbers ── */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  color: #7A8FA8;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 5px;
}

/* ── Hero stats row ── */
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(21,101,192,.12);
}
.hero-stats > div { position: relative; }
.hero-stats > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -18px; top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(21,101,192,.12);
}

/* ── Hero float cards — enhanced ── */
.hero-float {
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.96);
}
.hero-float-exp .big {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -.04em;
}
.hero-float-exp .sm {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  color: #7A8FA8;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}
.rating-text {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 800;
  color: var(--dark);
}
.rating-sub {
  font-size: .68rem;
  color: #7A8FA8;
  font-family: var(--font-ui);
}
.rating-stars { font-size: .9rem; letter-spacing: 1px; }

/* ── Hero pill ── */
.hero-pill {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
  padding: 8px 20px;
  box-shadow: 0 4px 16px rgba(21,101,192,.14);
  margin-bottom: 24px;
  gap: 10px;
}

/* ── CTA Buttons — more distinct ── */
.btn {
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 14px 30px;
}
.btn-lg { padding: 17px 40px; font-size: .95rem; }
.btn-primary {
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  box-shadow: 0 6px 22px rgba(21,101,192,.38);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #0D47A1, #1565C0);
  box-shadow: 0 10px 32px rgba(21,101,192,.50);
  transform: translateY(-3px);
}
.btn-wa { box-shadow: 0 6px 22px rgba(37,211,102,.42); }
.btn-outline { border-width: 2px; font-weight: 700; }

/* ── Section spacing — fill gaps ── */
.section    { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-lg { padding: 120px 0; }

/* ── Info bar text ── */
.ib-text h4 {
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}
.ib-text p {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: rgba(255,255,255,.75);
}

/* ── About section ── */
.about-section { padding: 110px 0; }
.about-content > h2 { margin-bottom: 18px; }
.about-content > p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5A6E8A;
  margin-bottom: 6px;
}
.af-item h4 {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.af-item p { font-size: .78rem; line-height: 1.5; }

/* ── Services cards ── */
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.svc-card p {
  font-size: .875rem;
  line-height: 1.72;
  color: #5A6E8A;
}
.svc-link {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ── Doctor cards ── */
.doc-info h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}
.doc-spec {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* ── Why section ── */
.why-item h4 {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.why-item p { font-size: .83rem; line-height: 1.62; }

/* ── Testimonials ── */
.testi-text {
  font-size: .92rem;
  line-height: 1.8;
  font-style: italic;
  color: #4A5D78;
}
.testi-name {
  font-family: var(--font-ui);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.testi-role {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  color: #7A8FA8;
}

/* ── Pricing ── */
.price-amt {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
}
.price-plan {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.pf-item {
  font-family: var(--font-ui);
  font-size: .86rem;
  font-weight: 500;
}

/* ── FAQ ── */
.faq-q {
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.faq-a {
  font-size: .875rem;
  line-height: 1.8;
  color: #5A6E8A;
}

/* ── Blog ── */
.blog-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.blog-cat {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.blog-more {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

/* ── Footer ── */
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
}
.footer-about p {
  font-family: var(--font-body);
  font-size: .86rem;
  line-height: 1.8;
}
.footer-bottom p {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
}

/* ── Page hero ── */
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.78;
  font-weight: 400;
}

/* ── Hero image frame — fill visible gap ── */
.hero-img-main {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
  box-shadow: 0 30px 80px rgba(21,101,192,.22), 0 0 0 8px rgba(21,101,192,.08);
  position: relative;
}
.hero-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(21,101,192,.18) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Hero section — taller, more spacious ── */
.hero {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 80px;
  align-items: center;
}
.hero-inner { gap: 72px; }
.hero-cta { gap: 16px; margin-bottom: 44px; }

/* ── About badge ── */
.about-badge .n {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.about-badge .l {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Why badge ── */
.clinic-badge .lb {
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.clinic-badge .sl {
  font-family: var(--font-ui);
  font-size: .7rem;
  color: #7A8FA8;
}

/* ── Contact form labels ── */
.form-label {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .03em;
  color: var(--dark);
}
.form-control {
  font-family: var(--font-body);
  font-size: .9rem;
  padding: 13px 18px;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
}

/* ── Promo banner text ── */
.promo-text {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.promo-badge {
  font-family: var(--font-ui);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .06em;
}

/* ── CTA section ── */
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.025em;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.cta-section p {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(255,255,255,.82);
}

/* ── Gap fillers — add visual separators between sections ── */
.info-bar { margin-top: 0; }

/* ── Partners bar ── */
.partners-bar { padding: 48px 0; }
.partner {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .06em;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ── Body text global ── */
body { font-size: 16px; line-height: var(--lh-body); }
p { line-height: var(--lh-body); }

/* ── Mobile typography ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 2.2rem; letter-spacing: -.02em; }
  h2 { font-size: 1.65rem; }
  .stat-num { font-size: 1.9rem; }
  .price-amt { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .hero-stats > div::after { display: none; }
}

/* ============================================================
   HERO FULLSCREEN + SWING LEAD FORM

/* ============================================================
   HERO — FULLSCREEN BG + SWING LEAD FORM  (v2 — fixed)
   ============================================================ */

/* ── Hide old hero ── */
section.hero { display: none !important; }

/* ── Section wrapper ── */
.hero-fullbg {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── BG image layer ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  animation: heroBgZoom 16s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroBgZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

/* ── Dark gradient overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(8,20,52,.93)   0%,
    rgba(13,71,161,.88) 28%,
    rgba(21,101,192,.65) 52%,
    rgba(5,15,40,.55)   78%,
    rgba(5,15,40,.45)   100%
  );
}

/* ── Trust strip ── */
.hero-trust-strip {
  position: absolute;
  top: 92px;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.22);
  border-right: none;
  border-radius: 40px 0 0 40px;
  padding: 9px 24px 9px 18px;
  gap: 0;
  animation: slideFromRight .7s .3s both;
}
@keyframes slideFromRight {
  from { opacity:0; transform: translateX(100%); }
  to   { opacity:1; transform: translateX(0); }
}
.hts-item {
  display: flex; align-items: center; gap: 6px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; white-space: nowrap;
}
.hts-sep { width: 1px; height: 14px; background: rgba(255,255,255,.25); margin: 0 14px; }
.hts-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E; display: inline-block;
  animation: dotPulse 1.8s infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.0); }
}

/* ── Inner flex row ── */
.hero-fullbg-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 128px 60px 80px;
  min-height: 100vh;
}

/* ══════════════════════════════
   LEFT — Text column
══════════════════════════════ */
.hero-text-col {
  flex: 1;
  max-width: 580px;
  animation: fadeUpCol .8s .1s both;
}
@keyframes fadeUpCol {
  from { opacity:0; transform:translateY(36px); }
  to   { opacity:1; transform:translateY(0); }
}

.hfb-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .73rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 9999px;
  margin-bottom: 26px;
}

.hfb-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 3px 28px rgba(0,0,0,.3);
}
.hfb-accent {
  background: linear-gradient(135deg, #00E5FF 0%, #29B6F6 50%, #00BCD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hfb-h1 em {
  font-style: italic;
  color: rgba(255,255,255,.82);
  -webkit-text-fill-color: rgba(255,255,255,.82);
  background: none;
}

.hfb-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.04rem;
  line-height: 1.82;
  color: rgba(255,255,255,.78);
  max-width: 480px;
  margin-bottom: 34px;
}

/* ── Action buttons ── */
.hfb-actions {
  display: flex; align-items: center;
  gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Call button */
.hfb-btn-call {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 13px 22px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(0,0,0,.22);
  transition: all .3s ease;
  border: 2px solid rgba(255,255,255,.85);
}
.hfb-btn-call:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(0,0,0,.3); }
.hfb-btn-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, #1565C0, #00BCD4);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.hfb-btn-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: #94A3B8; line-height: 1; margin-bottom: 3px;
}
.hfb-btn-num {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--primary); letter-spacing: -.01em;
}

/* WhatsApp button */
.hfb-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  border-radius: 16px;
  padding: 15px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem; font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(37,211,102,.48);
  transition: all .3s ease;
}
.hfb-btn-wa:hover { background: #1DA851; transform: translateY(-3px); }

/* ── Stats glass row ── */
.hfb-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 18px 28px;
}
.hfb-stat { flex: 1; text-align: center; }
.hfb-stat-n {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 900;
  color: #fff; letter-spacing: -.04em; line-height: 1;
}
.hfb-stat-l {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .62rem; font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .1em;
  margin-top: 5px;
}
.hfb-stat-div {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.2);
  margin: 0 6px; flex-shrink: 0;
}

/* ══════════════════════════════
   RIGHT — Swing-in Form
══════════════════════════════ */
.hero-form-col {
  flex-shrink: 0;
  width: 430px;
  animation: swingIn .95s .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes swingIn {
  0%   { opacity:0; transform: translateX(-140px) rotate(-8deg) scale(.9); }
  65%  { opacity:1; transform: translateX(10px) rotate(1.2deg) scale(1.01); }
  80%  { transform: translateX(-5px) rotate(-.5deg); }
  100% { opacity:1; transform: translateX(0) rotate(0) scale(1); }
}

.hfb-form-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 90px rgba(0,0,0,.35),
    0 0 0 1.5px rgba(255,255,255,.6);
}

/* Rainbow top bar */
.hfb-form-card::before {
  content: '';
  display: block;
  height: 5px;
  background: linear-gradient(90deg, #1565C0 0%, #00BCD4 50%, #22C55E 100%);
}

.hfb-form-inner { padding: 30px 30px 26px; }

/* Form header */
.hfb-form-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #EEF2F7;
}
.hfb-form-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, #1565C0, #00BCD4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 8px 22px rgba(21,101,192,.38);
}
.hfb-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 800;
  color: #0F1A2E; margin: 0 0 3px;
}
.hfb-form-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem; font-weight: 600;
  color: #94A3B8; margin: 0; letter-spacing: .02em;
}

/* Fields */
.hfb-form { display: flex; flex-direction: column; gap: 13px; }
.hfb-field { display: flex; flex-direction: column; gap: 5px; }
.hfb-label {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem; font-weight: 800;
  color: #0F1A2E;
  letter-spacing: .05em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.hfb-label i { color: #1565C0; width: 13px; }
.hfb-input {
  width: 100%; padding: 12px 16px;
  background: #F8FAFC;
  border: 2px solid #E8EDF5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; color: #0F1A2E;
  transition: border-color .22s, box-shadow .22s, background .22s;
  outline: none; appearance: none;
}
.hfb-input:focus {
  border-color: #1565C0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21,101,192,.1);
}
.hfb-input::placeholder { color: #B0BEC5; }
.hfb-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%231565C0' d='M0 0l6 7 6-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Submit CTA */
.hfb-submit {
  margin-top: 4px;
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, #1565C0 0%, #1E88E5 60%, #00BCD4 100%);
  color: #fff; border: none; border-radius: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem; font-weight: 800;
  letter-spacing: .02em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 8px 30px rgba(21,101,192,.42);
  transition: transform .25s, box-shadow .25s;
}
.hfb-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(21,101,192,.54); }
.hfb-submit:active { transform: translateY(0); }
.hfb-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* WhatsApp alt */
.hfb-wa-alt {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: #25D366;
  font-family: 'Manrope', sans-serif;
  font-size: .8rem; font-weight: 700;
  text-decoration: none; margin-top: 12px;
  transition: color .22s;
}
.hfb-wa-alt:hover { color: #1DA851; }

/* Message */
.hfb-form-msg {
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem; font-weight: 600;
  padding: 0; max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.hfb-form-msg.show {
  padding: 11px 15px;
  max-height: 80px;
}
.hfb-form-msg.success { background: #DCFCE7; color: #16A34A; }
.hfb-form-msg.error   { background: #FEE2E2; color: #DC2626; }

/* Trust row */
.hfb-trust {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 6px;
  padding: 14px 30px 20px;
  border-top: 1.5px solid #EEF2F7;
  background: #FAFBFD;
}
.hfb-trust span {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Manrope', sans-serif;
  font-size: .67rem; font-weight: 700;
  color: #7A8FA8; letter-spacing: .04em;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5);
  font-family: 'Manrope', sans-serif;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  animation: fadeUp 1s 1.4s both;
}
.hero-scroll-arrow {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem;
  animation: arrowBounce 2.2s 1.8s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-fullbg-inner { padding: 110px 32px 70px; gap: 32px; }
  .hero-form-col { width: 390px; }
  .hfb-h1 { font-size: 3.5rem; }
}
@media (max-width: 900px) {
  .hero-fullbg-inner {
    flex-direction: column;
    align-items: center;
    padding: 108px 20px 60px;
    gap: 36px;
  }
  .hero-text-col { max-width: 100%; text-align: center; }
  .hfb-desc { margin-left: auto; margin-right: auto; }
  .hfb-actions { justify-content: center; }
  .hfb-stats { flex-wrap: wrap; }
  .hero-form-col { width: 100%; max-width: 480px; }
  .hero-trust-strip { font-size: .65rem; top: 78px; padding: 7px 14px; }
  .hts-sep { margin: 0 8px; }
  .hero-bg-img { background-position: 60% center; }
}
@media (max-width: 640px) {
  .hero-fullbg-inner { padding: 96px 14px 50px; gap: 28px; }
  .hfb-h1 { font-size: 2.4rem; }
  .hfb-form-inner { padding: 24px 18px 20px; }
  .hero-trust-strip { display: none; }
  .hfb-stats { padding: 14px 16px; }
  .hfb-stat-n { font-size: 1.7rem; }
  .hfb-btn-call { padding: 11px 16px; }
}
