/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-primary: #0057a8;
  --blue-light: #1a73e8;
  --blue-bg: #eaf2ff;
  --blue-dark: #003d7a;
  --teal: #00a99d;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --red: #e53e3e;
  --green: #38a169;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-lg: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 48px;
}
.badge {
  display: inline-block;
  background: var(--blue-bg);
  color: var(--blue-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,87,168,.35); }
.btn-outline {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}
.btn-outline:hover { background: var(--blue-primary); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--blue-primary);
}
.btn-white:hover { background: var(--blue-bg); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.85);
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-links a, .topbar-links span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.topbar-links a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-badge {
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img { height: 52px; width: auto; display: block; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gray-600);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all .15s;
  cursor: pointer;
}
.nav-link:hover, .nav-link.active { background: var(--blue-bg); color: var(--blue-primary); }
.nav-link svg { width: 14px; height: 14px; opacity: .6; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px;
  z-index: 200;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gray-800);
  transition: background .15s;
}
.dropdown a:hover { background: var(--gray-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--gray-800);
  cursor: pointer;
  padding: 6px;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, #0077cc 100%);
  color: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero-title span { color: #7dd3fc; }
.hero-desc {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  opacity: .75;
  margin-top: 4px;
}

/* ===== APPOINTMENT FORM CARD ===== */
.appt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.appt-card-header {
  background: linear-gradient(90deg, var(--blue-primary), var(--teal));
  padding: 20px 24px;
  color: var(--white);
}
.appt-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.appt-card-sub { font-size: 0.82rem; opacity: .85; }
.appt-tabs {
  display: flex;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.appt-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .2s;
}
.appt-tab.active {
  color: var(--blue-primary);
  border-color: var(--blue-primary);
  background: var(--white);
}
.appt-form { padding: 24px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--gray-800);
  font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(0,87,168,.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consult-toggle { display: flex; gap: 10px; margin-bottom: 14px; }
.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  color: var(--gray-600);
}
.toggle-btn.active {
  border-color: var(--blue-primary);
  background: var(--blue-bg);
  color: var(--blue-primary);
}
.form-check { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.form-check input { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue-primary); }
.form-check label { font-size: 0.76rem; color: var(--gray-600); line-height: 1.4; }
.form-check a { color: var(--blue-primary); }
.appt-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue-primary), var(--teal));
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.appt-submit:hover { opacity: .9; transform: translateY(-1px); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  flex-shrink: 0;
  font-size: 1rem;
}
.trust-item strong { color: var(--gray-800); display: block; font-size: 0.78rem; }

/* ===== STATS ===== */
.stats-section { background: var(--blue-dark); color: var(--white); padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card { padding: 24px; }
.stat-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: #7dd3fc;
  line-height: 1;
}
.stat-label {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 6px;
}
.stat-detail {
  font-size: 0.78rem;
  opacity: .65;
  margin-top: 4px;
}

/* ===== SPECIALTIES ===== */
.spec-section { background: var(--gray-50); }
.spec-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.spec-tab-btn {
  padding: 8px 22px;
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  color: var(--gray-600);
}
.spec-tab-btn.active {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.spec-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.spec-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.spec-card .icon {
  width: 52px;
  height: 52px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 12px;
  transition: background .2s;
}
.spec-card:hover .icon { background: var(--blue-primary); }
.spec-card:hover .icon svg { filter: brightness(10); }
.spec-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all .2s;
}
.why-card:hover {
  border-color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-bg), #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.why-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-section { background: var(--gray-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-primary);
  font-size: 1.1rem;
}
.contact-item-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 2px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.88rem;
  color: var(--gray-600);
}
.contact-item-text a { color: var(--blue-primary); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-primary), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}
.footer-logo-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background .2s;
  cursor: pointer;
}
.social-btn:hover { background: var(--blue-primary); }
.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,.6); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: all .2s;
}
.float-btn-primary { background: var(--blue-primary); color: var(--white); }
.float-btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.float-btn-whatsapp { background: #25d366; color: var(--white); }
.float-btn-whatsapp:hover { background: #1dba58; transform: translateY(-2px); }

/* ===== RATING BADGE ===== */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-top: 24px;
}
.stars { color: #fbbf24; letter-spacing: 2px; }

/* ===== NOTICE BANNER ===== */
.notice-banner {
  background: linear-gradient(90deg, var(--teal), #00c2b3);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}
.notice-banner strong { font-weight: 700; }
.notice-banner .banner-item { display: flex; align-items: center; gap: 6px; }
.notice-banner .banner-sep { opacity: 0.4; }

/* ===== HOME CONTACT SECTION ===== */
.contact-section-home {
  background: linear-gradient(135deg, #002b6e 0%, #003d7a 50%, #004f9a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.contact-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.contact-badge-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(125,211,252,.4);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 800;
  color: #7dd3fc;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-chips-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-banner-single-home {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 36px;
  width: fit-content;
  min-width: 220px;
}
.contact-ctas-home {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== APPOINTMENT SECTION STANDALONE ===== */
.appt-section-standalone {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, #0077cc 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: none;
  color: var(--white);
}
.appt-section-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.appt-section-standalone .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.appt-card-standalone {
  width: 100%;
  max-width: 420px;
  margin: 0;
  position: relative;
  z-index: 2;
}
.appt-card-standalone .appt-card {
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .appt-section-standalone .container { grid-template-columns: 1fr !important; gap: 40px !important; }
  .appt-card-standalone { max-width: 480px !important; margin: 0 auto !important; }
  .appt-card { max-width: 480px !important; }
  .contact-grid-home { grid-template-columns: 1fr !important; gap: 48px !important; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .section { padding: 48px 0 !important; }
  .appt-section-standalone { padding: 48px 0 !important; }
  .appt-section-standalone .hero-content { text-align: center; max-width: 100%; margin-bottom: 32px; }
  .appt-section-standalone .hero-actions { justify-content: center; }
  .appt-section-standalone .hero-stats { justify-content: center; gap: 16px 24px; }
  .appt-section-standalone .rating-badge { justify-content: center; margin-top: 16px; }
  .contact-section-home { padding: 48px 0 !important; }
  .contact-section-home .container > div { text-align: center; }
  .contact-badge-home { margin-left: auto; margin-right: auto; }
  .contact-section-home p { margin-left: auto !important; margin-right: auto !important; }
  .contact-banner-single-home { margin-left: auto; margin-right: auto; }
  .contact-ctas-home { justify-content: center; }
  .topbar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  
  .notice-banner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 12px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .notice-banner .banner-sep { display: none; }
  
  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 68px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--white) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    padding: 16px !important;
    box-shadow: var(--shadow-md) !important;
    z-index: 9999 !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
  }
  .nav-item:hover .dropdown { display: none !important; }
  .dropdown {
    position: static;
    display: none !important;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: transparent;
    min-width: unset;
  }
  .dropdown.open {
    display: block !important;
  }
  .dropdown a { padding: 8px 12px; color: var(--gray-600); }
  
  .nav-link svg {
    transition: transform 0.25s ease;
  }
  .nav-link.submenu-active svg {
    transform: rotate(180deg);
    color: var(--blue-primary);
  }
  
  .floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 10px 16px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }
  .float-btn {
    flex: 1;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 16px;
  }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .logo img { height: 40px; }
  .navbar .container { height: 58px; }
  .nav-links.open { top: 58px !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.8rem; }
  .appt-form { padding: 20px 16px; }
  .contact-chips-grid-home { grid-template-columns: 1fr !important; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp .6s ease both; }
.appt-card { animation: fadeUp .6s .15s ease both; }

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--blue-primary); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-800);
  font-family: inherit;
}
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--blue-primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  padding: 0 20px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 20px 18px;
}
.faq-a a { color: var(--blue-primary); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ===== SPEC PHOTO LAYOUT ===== */
.spec-split {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.spec-split-left {
  position: sticky;
  top: 90px;
}
.spec-split-left .spec-tabs {
  flex-wrap: nowrap;
  gap: 8px;
}
.spec-split-left .spec-tab-btn {
  white-space: nowrap;
  padding: 8px 18px;
  font-size: .82rem;
}
/* Carousel wrapper */
.spec-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.spec-car-viewport {
  overflow: hidden;
  border-radius: 14px;
  flex: 1;
}
.spec-car-track {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.spec-car-btn {
  flex-shrink: 0;
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-primary);
  background: var(--white);
  color: var(--blue-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  z-index: 2;
}
.spec-car-btn:hover { background: var(--blue-primary); color: var(--white); }
.spec-car-btn:disabled { opacity: .35; cursor: not-allowed; }
.spec-car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.spec-car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.spec-car-dot.active {
  background: var(--blue-primary);
  width: 24px;
  border-radius: 4px;
}
/* carousel now uses flex, not grid */
/* Full-bleed image card with gradient overlay */
.spec-photo-card {
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: transform .25s, box-shadow .25s;
  background: var(--blue-dark);
  /* carousel: fixed width so 4 show at once */
  flex: 0 0 calc(25% - 12px);
  min-width: calc(25% - 12px);
}
.spec-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.spec-photo-card img {
  width: 100%;
  /* natural portrait ratio matching the original images */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .35s, opacity .35s;
}
.spec-photo-card:hover img {
  transform: scale(1.06);
  opacity: .85;
}
/* gradient name bar at bottom */
.spec-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 14px 14px;
  background: linear-gradient(to top, rgba(0,20,60,.85) 0%, transparent 100%);
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
  line-height: 1.3;
}
/* Book Now pill on hover */
.spec-photo-card::after {
  content: 'Book Now';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 8px));
  background: var(--blue-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  white-space: nowrap;
}
.spec-photo-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media (max-width: 1100px) {
  .spec-photo-card { flex: 0 0 calc(33.33% - 11px); min-width: calc(33.33% - 11px); }
}
@media (max-width: 900px) {
  .spec-split { grid-template-columns: 1fr; }
  .spec-split-left { position: static; }
  .spec-photo-card { flex: 0 0 calc(33.33% - 11px); min-width: calc(33.33% - 11px); }
}
@media (max-width: 600px) {
  .spec-photo-card { flex: 0 0 calc(50% - 8px); min-width: calc(50% - 8px); }
}

/* ===== INSURANCE MARQUEE ===== */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}

.marquee-wrapper.direction-reverse .marquee-track {
  animation: marquee-scroll-reverse 55s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 87, 168, 0.08);
  border-color: var(--blue-primary);
}

.partner-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-bg);
  color: var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.partner-card:hover .partner-icon {
  background: var(--blue-primary);
  color: var(--white);
}

.partner-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
}

.partner-logo-img {
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid var(--gray-200);
}
.slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-content-left {
  position: relative;
  width: 48%;
  height: 100%;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8fafc;
  background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.slide-decor-cross {
  position: absolute;
  bottom: 32px;
  left: 32px;
  color: #b31942;
  font-size: 28px;
  font-weight: 700;
  user-select: none;
}
.slide-decor-square {
  position: absolute;
  top: 48px;
  left: 48px;
  width: 16px;
  height: 16px;
  background: #0057a8;
  border-radius: 4px;
}
.slide-decor-dots {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 36px;
  height: 18px;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
  background-size: 8px 8px;
}
.slide-badge-top {
  display: inline-block;
  width: fit-content;
  background: #eff6ff;
  color: #1e3a8a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid #dbeafe;
}
.slide-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.slide-title span {
  color: #b31942;
}
.slide-desc {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}
.btn-slide-red {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #b31942;
  color: #white;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(179,25,66,0.35);
  transition: all 0.25s ease;
  width: fit-content;
}
.btn-slide-red:hover {
  background: #961233;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179,25,66,0.45);
}
.btn-slide-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.slide-center-badge {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: #0057a8;
  color: #fff;
  padding: 16px 12px;
  border-radius: 36px 0 36px 0;
  box-shadow: 0 10px 25px rgba(0,87,168,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 15;
  text-align: center;
  width: 112px;
  height: 112px;
  border: 4px solid var(--white);
}
.badge-icon-wrap {
  background: var(--white);
  color: #0057a8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.slide-image-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 53%;
  height: 100%;
  overflow: hidden;
  border-left: 10px solid #b31942;
  border-radius: 50% 0 0 50% / 100% 0 0 100%;
  background: var(--blue-bg);
  transform: scaleX(1.1);
  transform-origin: right center;
}
.slide-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(0.91);
  transform-origin: right center;
}
.slideshow-indicators {
  position: absolute;
  bottom: 24px;
  right: 5%;
  display: flex;
  gap: 8px;
  z-index: 20;
}
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.slide-dot.active {
  background: #fbbf24;
  width: 24px;
  border-radius: 10px;
}


@media (max-width: 1024px) {
  .slide-content-left { padding: 40px 48px; }
  .slide-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .hero-slideshow {
    height: 520px !important;
  }
  .hero-slide {
    flex-direction: column;
    position: absolute;
    inset: 0;
    display: flex;
  }
  .hero-slide.active {
    opacity: 1;
    visibility: visible;
  }
  .slide-content-left {
    width: 100%;
    height: auto;
    padding: 24px 20px 32px;
  }
  .slide-decor-cross,
  .slide-decor-square,
  .slide-decor-dots {
    display: none !important;
  }
  .slide-image-right {
    position: relative;
    width: 100%;
    height: 200px;
    border-left: none;
    border-top: 6px solid #b31942;
    border-radius: 0;
    transform: none;
  }
  .slide-image-right img {
    transform: none;
  }
  .slide-center-badge {
    top: auto;
    bottom: 160px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80px;
    height: 80px;
    padding: 8px;
  }
  .badge-icon-wrap {
    width: 36px;
    height: 36px;
  }
  .slideshow-indicators {
    bottom: 16px;
    right: 50%;
    transform: translateX(50%);
  }
  .slide-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
  .slide-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

/* ===== MAINTENANCE OVERLAY ===== */
.maintenance-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 18, 48, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999999 !important;
  color: #ffffff;
  font-family: 'Outfit', 'Inter', sans-serif;
  padding: 20px;
  box-sizing: border-box;
}
.maintenance-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px 36px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  animation: maintenanceFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.maintenance-icon-ring {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(56, 189, 248, 0.08);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maintenance-icon-ring svg {
  animation: maintenancePulse 2.5s infinite ease-in-out;
}
.maintenance-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid rgba(56, 189, 248, 0.2);
}
.maintenance-dot {
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
  animation: maintenanceBlink 1.5s infinite ease-in-out;
}
@keyframes maintenancePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes maintenanceBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes maintenanceFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
html.maintenance-active, body.maintenance-active {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
}

