/* ============================================
   STUNNING DENTISTRY - GLOBAL CSS
   Version: 1.0
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────── */
:root {
  --navy:       #003366;
  --navy-dark:  #001f3f;
  --navy-light: #0a4a82;
  --gold:       #ffd700;
  --gold-dark:  #e6c200;
  --gold-light: #fff0a0;
  --white:      #ffffff;
  --light-gray: #d3d3d3;
  --cream:      #f5f5dc;
  --cream-dark: #ede8cc;
  --text-dark:  #1a1a2e;
  --text-mid:   #4a4a6a;
  --text-light: #7a7a9a;
  --bg-light:   #f8f8f8;
  --bg-cream:   #fffdf0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,51,102,.10);
  --shadow-md:  0 8px 32px rgba(0,51,102,.14);
  --shadow-lg:  0 20px 60px rgba(0,51,102,.18);
  --shadow-gold:0 4px 24px rgba(255,215,0,.30);

  --transition: .3s cubic-bezier(.4,0,.2,1);

  --container:  1200px;
  --header-h:   160px;
}

/* ─── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ─── Container ─────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography Helpers ────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-dark);
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.3);
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 14px;
}
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--gold); }

.section-subtitle {
  font-size: 1rem; color: var(--text-mid); max-width: 600px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,215,0,.45); background: var(--gold); }
.btn-secondary {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--navy);
}
.btn-white:hover { background: var(--cream); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }

/* ─── Header ────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,51,102,.10);
}

.header-topbar {
  background: var(--navy-dark);
  padding: 7px 0;
}
.header-topbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-left a {
  color: rgba(255,255,255,.8); font-size: .82rem;
  display: flex; align-items: center; gap: 5px;
}
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.award-badge {
  color: var(--gold); font-size: .78rem; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
}
.social-links { display: flex; gap: 10px; }
.social-links a { display: flex; align-items: center; }
.social-links img { width: 18px; height: 18px; filter: brightness(0) invert(1) opacity(.7); }
.social-links a:hover img { opacity: 1; filter: brightness(1); }

.header-main { padding: 14px 0; }
.header-inner {
  display: flex; align-items: center; gap: 32px;
}
.header-logo { flex-shrink: 0; }
.header-logo img { height: 52px; width: auto; }
.text-logo { display: flex; align-items: center; gap: 10px; }
.logo-s {
  width: 44px; height: 44px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--navy-dark);
}
.text-logo strong { display: block; color: var(--navy); font-size: 1.1rem; letter-spacing: .06em; }
.text-logo span { display: block; font-size: .65rem; color: var(--gold-dark); letter-spacing: .15em; text-transform: uppercase; }

.header-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 500; color: var(--text-dark);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link { color: var(--navy); background: rgba(0,51,102,.06); }
.dropdown-arrow { font-size: .7rem; transition: var(--transition); }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 210px;
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}
.dropdown-wide { min-width: 260px; columns: 2; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block; padding: 9px 18px;
  font-size: .86rem; color: var(--text-mid);
  break-inside: avoid;
}
.dropdown-menu li a:hover { color: var(--navy); background: var(--bg-light); padding-left: 24px; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark); font-weight: 700; font-size: .85rem;
  padding: 10px 20px; border-radius: 30px;
  box-shadow: var(--shadow-gold);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,.4); }
.btn-call img { width: 16px; height: 16px; }
.btn-whatsapp {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { transform: scale(1.1); }
.btn-whatsapp img { width: 22px; height: 22px; filter: brightness(1) invert(0); }

.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; border-radius: 6px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-actions {
  background: var(--cream); border-top: 1px solid rgba(0,51,102,.1);
  padding: 10px 0;
}
.action-buttons { display: flex; justify-content: center; gap: 12px; }
.action-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 22px; border-radius: 30px;
  font-size: .87rem; font-weight: 600;
  border: 2px solid var(--gold-dark);
  color: var(--navy); transition: var(--transition);
  background: transparent; white-space: nowrap;
}
.action-btn:hover, .action-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold); color: var(--navy-dark);
  transform: translateY(-1px);
}
.action-btn img { width: 16px; height: 16px; }

/* Solo Book Appointment button – prominent & polished */
.btn-appointment-solo {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-dark) !important;
  border: none;
  padding: 11px 36px;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(201,152,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-appointment-solo:hover {
  background: linear-gradient(135deg, #ffdc5e 0%, var(--gold) 100%);
  box-shadow: 0 6px 22px rgba(201,152,0,.45);
  transform: translateY(-2px);
  color: var(--navy-dark) !important;
}
.btn-appointment-solo:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(201,152,0,.3);
}

/* ─── Floating Contacts ──────────────────────── */
.floating-contacts {
  position: fixed; right: 20px; bottom: 100px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 900;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.1) translateX(-4px); }
.float-whatsapp { background: #25d366; }
.float-email { background: var(--navy); }
.float-btn img { width: 50px; height: 50px; filter: brightness(1) invert(0); }
.float-tooltip {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  background: var(--navy-dark); color: var(--white);
  font-size: .78rem; font-weight: 600; white-space: nowrap;
  padding: 5px 12px; border-radius: 20px;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-dark);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ─── Footer ────────────────────────────────── */
.site-footer { background: var(--navy-dark); color: var(--white); position: relative; }

.footer-wave { line-height: 0; overflow: hidden; background: var(--white); }
.footer-wave svg { width: 100%; height: 60px; }

.footer-body { padding: 64px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px;
}
.footer-col {}
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-text-logo { color: var(--gold); font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.footer-tagline { color: var(--gold); font-size: .9rem; font-weight: 600; margin-bottom: 10px; }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-stats { display: flex; gap: 24px; margin-bottom: 20px; }
.footer-stats .stat { text-align: center; }
.footer-stats .stat strong { display: block; font-size: 1.3rem; color: var(--gold); font-weight: 800; }
.footer-stats .stat span { font-size: .75rem; color: rgba(255,255,255,.6); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: rgba(255,255,255,.7);
  font-size: .75rem;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.social-btn img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.footer-heading {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--gold); margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,215,0,.2);
}
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
  font-size: .87rem; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '→'; font-size: .75rem; color: var(--gold); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-links a:hover::before { opacity: 1; }

.footer-locations { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.location-item h4 { font-size: .87rem; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.location-item p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.7);
}
.contact-item:hover { color: var(--gold); }
.contact-item img { width: 16px; height: 16px; filter: brightness(0) invert(1) opacity(.6); }

.footer-action-bar {
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
}
.footer-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-action-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 30px;
  border: 1.5px solid rgba(255,215,0,.4);
  color: rgba(255,255,255,.85); font-size: .86rem; font-weight: 500;
  transition: var(--transition);
}
.footer-action-btn:hover, .footer-action-btn.whatsapp {
  background: rgba(255,215,0,.12); color: var(--gold); border-color: var(--gold);
}
.footer-action-btn img { width: 16px; height: 16px; filter: brightness(1) invert(0) opacity(.7); }

.footer-copyright { padding: 20px 0; }
.copyright-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copyright p { font-size: .83rem; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--gold); }

/* ─── Mobile Bottom Bar ─────────────────────── */
.mobile-bottom-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy-dark); z-index: 800;
  padding: 8px 0; border-top: 2px solid var(--gold);
}
.mbb-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  flex: 1; padding: 6px 8px; color: rgba(255,255,255,.7);
  font-size: .7rem; font-weight: 500; transition: var(--transition);
}
.mbb-btn img { width: 20px; height: 20px; filter: brightness(1) invert(0) opacity(1); }
.mbb-btn:hover, .mbb-whatsapp { color: #25d366; }
.mbb-whatsapp img { filter: none; }
.mbb-cta { color: var(--gold); }
.mbb-cta img { filter: brightness(0) saturate(100%) invert(85%) sepia(80%) saturate(600%) hue-rotate(5deg); }

/* ─── Page Hero ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,.08) 0%, transparent 70%);
}
.page-hero-content { text-align: center; position: relative; }
.page-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 800; margin-bottom: 14px;
}
.page-hero-content h1 span { color: var(--gold); }
.page-hero-content p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 540px; margin: 0 auto 20px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ─── Cards ─────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ─── Forms ─────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; margin-bottom: 6px;
  font-size: .86rem; font-weight: 600; color: var(--gold-dark);
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .93rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,215,0,.15);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.phone-input { display: flex; }
.phone-flag {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 12px; background: var(--bg-light);
  border: 1.5px solid var(--light-gray); border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  font-size: .85rem; color: var(--text-mid); white-space: nowrap;
}
.phone-flag + .form-control { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

/* ─── Alert / Notice ────────────────────────── */
.alert {
  padding: 14px 18px; border-radius: var(--radius-md);
  font-size: .9rem; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 10px;
}
.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-error { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.alert-info { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }

/* ─── Stats Row ─────────────────────────────── */
.stats-row {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.stat-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid rgba(0,51,102,.12);
  border-radius: var(--radius-md); padding: 10px 18px;
  box-shadow: var(--shadow-sm);
}
.stat-badge strong { font-size: 1.15rem; color: var(--navy); font-weight: 800; }
.stat-badge span { font-size: .78rem; color: var(--text-light); }

/* ─── Review Stars ──────────────────────────── */
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

/* ─── Badge ─────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 20px;
  font-size: .77rem; font-weight: 600;
}
.badge-gold { background: rgba(255,215,0,.15); color: var(--gold-dark); border: 1px solid rgba(255,215,0,.3); }
.badge-navy { background: rgba(0,51,102,.1); color: var(--navy); }
.badge-green { background: #e8f5e9; color: #2e7d32; }

/* ─── Divider ───────────────────────────────── */
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 2px; margin: 16px auto; }
.divider.left { margin-left: 0; }

/* ─── Utilities ─────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.py-section { padding: 80px 0; }
.py-lg { padding: 100px 0; }
.bg-cream { background: var(--bg-cream); }
.bg-navy { background: var(--navy-dark); }
.bg-light { background: var(--bg-light); }

/* ─── Animation ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: var(--shadow-gold); }
  50%      { box-shadow: 0 0 32px rgba(255,215,0,.5); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.anim-fade-up { animation: fadeInUp .6s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-link { padding: 8px 10px; font-size: .84rem; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-stats { justify-content: flex-start; }
  .copyright-inner { flex-direction: column; text-align: center; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .action-btn { padding: 7px 10px; font-size: .75rem; }
}

/* ─── MEGA MENU ──────────────────────────────── */
.has-megamenu { position: static; }
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,51,102,.18);
  border-top: 3px solid var(--gold);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 999;
}
/* Position relative on header-main so mega menu stays in header width */
.header-main { position: relative; }
.has-megamenu:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner {
  display: flex; gap: 0;
  padding: 24px 0;
  max-width: 1240px; margin: 0 auto; padding: 24px 32px;
}
.mega-col {
  flex: 1; padding: 0 20px;
  border-right: 1px solid rgba(0,51,102,.07);
}
.mega-col:last-child { border-right: none; }
.mega-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy);
  padding-bottom: 8px; margin-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col ul li a {
  display: block; padding: 5px 0;
  font-size: .84rem; color: var(--text-mid);
  transition: var(--transition);
}
.mega-col ul li a:hover { color: var(--navy); padding-left: 6px; }
.mega-cta { margin-top: 16px; }
.mega-view-all {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white) !important; padding: 8px 16px; border-radius: 20px;
  font-size: .8rem; font-weight: 600;
}
.mega-view-all:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Mobile mega menu */
@media (max-width: 1024px) {
  .mega-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 3px solid var(--gold);
    background: transparent;
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
  }
  .has-megamenu.open .mega-menu { max-height: 1200px; }
  .mega-menu-inner { flex-direction: column; padding: 8px 0 8px 16px; gap: 0; }
  .mega-col { border-right: none; border-bottom: 1px solid rgba(0,51,102,.07); padding: 8px 0; }
  .mega-col:last-child { border-bottom: none; }
}

/* ─── HERO SLIDER ────────────────────────────── */
.hero-slider {
  position: relative; overflow: hidden;
  height: 580px; background: var(--navy-dark);
}
.slider-track {
  display: flex; height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,20,60,.82) 0%, rgba(0,20,60,.45) 55%, transparent 100%);
}
.slide-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 0 60px; color: var(--white);
}
.slide-badge {
  display: inline-block; background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.4); color: var(--gold);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 18px;
}
.slide-title {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  line-height: 1.18; margin-bottom: 16px;
}
.slide-title span { color: var(--gold); }
.slide-text {
  font-size: 1.05rem; opacity: .85; line-height: 1.7; margin-bottom: 28px;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-nav {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: var(--transition); border: none; padding: 0;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
  color: var(--white); font-size: 1.2rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

@media (max-width: 768px) {
  .hero-slider { height: 460px; }
  .slide-content { padding: 0 24px; }
  .slide-title { font-size: 1.9rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: .9rem; }
}

/* ─── WHY US SECTION ─────────────────────────── */
.why-us-section {
  background: linear-gradient(135deg, #0a1f3d 0%, #0d3d6b 50%, #0a2d52 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.why-us-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,215,0,.05) 0%, transparent 60%),
                    radial-gradient(circle at 80% 50%, rgba(13,122,181,.1) 0%, transparent 60%);
}
.why-us-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  position: relative; z-index: 1;
}
.why-us-card {
  text-align: center; padding: 32px 20px;
  background: rgba(255,255,255,.06); border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.why-us-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why-us-badge {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; overflow: hidden;
  border: 3px solid rgba(255,215,0,.4);
  box-shadow: 0 0 0 6px rgba(255,215,0,.08);
}
.why-us-badge img { width: 60px; height: 60px; object-fit: contain; }
.why-us-badge .badge-icon-text {
  font-size: 2rem;
}
.why-us-card h4 {
  color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1.4;
  font-family: var(--font-display);
}
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-us-card { padding: 20px 12px; }
}

/* ─── DOCTOR PROFILE SECTION ─────────────────── */
.doctor-profile-section { padding: 80px 0; background: var(--bg-cream); }
.doctor-profile-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.doctor-image-wrap { position: relative; }
.doctor-image-wrap img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,51,102,.2);
}
.doctor-credentials-badge {
  position: absolute; bottom: -20px; left: 24px; right: 24px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 12px; padding: 16px 20px;
  display: flex; gap: 20px; justify-content: space-around;
  box-shadow: var(--shadow-lg);
}
.cred-item { text-align: center; }
.cred-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.cred-label { font-size: .72rem; color: rgba(255,255,255,.7); display: block; margin-top: 2px; }
.doctor-content { padding-bottom: 20px; }
.doctor-name {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--navy-dark); margin-bottom: 6px;
}
.doctor-quals {
  font-size: .92rem; font-weight: 600; color: var(--navy);
  margin-bottom: 4px;
}
.doctor-role {
  font-size: .88rem; color: var(--text-mid); margin-bottom: 20px;
  font-weight: 600;
}
.doctor-bio {
  font-size: .95rem; line-height: 1.75; color: var(--text-mid);
  margin-bottom: 24px;
}
.doctor-bio strong { color: var(--navy-dark); }
.doctor-specialties {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.specialty-tag {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(0,51,102,.08); color: var(--navy);
  font-size: .8rem; font-weight: 600;
  border: 1px solid rgba(0,51,102,.15);
}
@media (max-width: 900px) {
  .doctor-profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-credentials-badge { position: static; margin-top: 24px; }
}
