/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #f12728; --dark: #1a1a1a; --navy: #0f1923;
  --gray-bg: #f5f5f5; --border: #e5e5e5; --text: #333;
  --muted: #6b6b6b; --white: #fff; --radius: 14px;
  --shadow: 0 6px 32px rgba(0,0,0,0.10);
  --font-head: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text); background: #fff;
  font-size: 15px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
}
h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; display: block; }
.section-title { font-size: 32px; font-weight: 400; font-family: var(--font-head); line-height: 1.2; color: var(--dark); }
.section-title.white { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar { position: sticky; top: 0; z-index: 999; background: #fff; height: 100px; overflow: visible; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; overflow: visible; }
.nav-menu { display: flex; align-items: center; gap: 20px; flex: 1; flex-wrap: nowrap; overflow: visible; }
.nav-link { font-size: 14px; font-weight: 500; color: #444; transition: color .2s; white-space: nowrap; display: flex; align-items: center; gap: 4px; }
.nav-link:hover, .nav-link.active { color: var(--red); font-weight: 600; }
.nav-link .arrow { font-size: 9px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border-radius: 12px; min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14); border: 1px solid #f0f0f0;
  padding: 8px 0; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s ease; z-index: 10000;
  display: block; list-style: none;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; font-size: 13px; color: #444; transition: background .15s, color .15s; white-space: nowrap; }
.dropdown-menu li a:hover { background: #fff5f5; color: var(--red); }

.nav-phone-btn { margin-left: auto; background: var(--dark); color: #fff; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: 50px; white-space: nowrap; transition: background .2s; flex-shrink: 0; }
.nav-phone-btn:hover { background: var(--red); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d3d 100%);
  padding: 72px 28px 64px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(241,39,40,0.18) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }
.page-hero h1 { font-size: 42px; font-weight: 400; font-family: var(--font-head); color: #fff; line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--red); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-bg); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-title { margin-top: 6px; }
.section-header p { font-size: 14px; color: var(--muted); max-width: 560px; margin: 12px auto 0; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 20px; object-fit: cover; height: 480px; }
.about-badge-abs {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: #fff; border-radius: 16px;
  padding: 20px 24px; text-align: center; box-shadow: 0 8px 28px rgba(241,39,40,0.35);
}
.about-badge-abs .num { font-size: 36px; font-weight: 900; line-height: 1; display: block; }
.about-badge-abs .lbl { font-size: 12px; opacity: .85; margin-top: 4px; display: block; }
.about-content .section-title { margin-bottom: 16px; }
.about-content p { font-size: 14px; color: #555; line-height: 1.8;}
.creds-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.creds-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #444; }
.creds-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.doctor-card { background: var(--gray-bg); border-radius: 16px; padding: 24px; display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.doctor-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; background: #ddd; }
.doctor-card .dc-info strong { display: block; font-size: 15px; font-weight: 700; }
.doctor-card .dc-info span { font-size: 12px; color: var(--muted); }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1.5px solid var(--border); text-align: center; transition: box-shadow .2s, transform .2s; }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: #fff2f2; color: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.value-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   SERVICE PAGE
   ============================================================ */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.service-content h2 { font-size: 28px; font-weight: 400; font-family: var(--font-head); margin-bottom: 16px; }
.service-content p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.service-content ul { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 24px; }
.service-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #444; }
.service-content ul li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.service-sidebar { position: sticky; top: 88px; }
.service-nav-card { background: var(--navy); border-radius: 16px; padding: 24px; }
.service-nav-card h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.service-nav-card ul { display: flex; flex-direction: column; gap: 4px; }
.service-nav-card ul li a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.6); transition: background .15s, color .15s; }
.service-nav-card ul li a:hover, .service-nav-card ul li a.active { background: var(--red); color: #fff; }
.appt-card { background: var(--red); border-radius: 16px; padding: 24px; margin-top: 16px; text-align: center; }
.appt-card h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.appt-card p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.appt-card a { display: inline-block; background: #fff; color: var(--red); font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 50px; transition: transform .2s; }
.appt-card a:hover { transform: translateY(-2px); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.65)); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 13px; font-weight: 600; }
/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 32px; cursor: pointer; background: none; border: none; line-height: 1; }

/* ============================================================
   AWARDS PAGE
   ============================================================ */
.awards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 28px; }
.award-card { background: #fff; border-radius: 16px; border: 1.5px solid var(--border); padding: 28px 24px; display: flex; gap: 18px; align-items: flex-start; transition: box-shadow .2s, transform .2s; }
.award-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.award-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,#fff2f2,#ffe0e0); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
.award-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.award-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.award-card .award-year { display: inline-block; font-size: 11px; font-weight: 700; color: var(--red); background: #fff2f2; border-radius: 50px; padding: 3px 10px; margin-top: 8px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 400; font-family: var(--font-head); margin-bottom: 12px; }
.contact-info p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; background: #fff2f2; color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.ci-body strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.ci-body span { font-size: 13px; color: var(--muted); }
.contact-form-card { background: #fff; border-radius: 20px; padding: 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.09); border: 1px solid var(--border); }
.contact-form-card h3 { font-size: 20px; font-weight: 400; font-family: var(--font-head); margin-bottom: 20px; }
.cf-group { margin-bottom: 16px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.cf-group input, .cf-group select, .cf-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e0e0e0;
  border-radius: 10px; font-size: 13.5px; font-family: inherit;
  color: var(--text); outline: none; background: #fff; transition: border-color .2s;
}
.cf-group input:focus, .cf-group select:focus, .cf-group textarea:focus { border-color: var(--red); }
.cf-group textarea { min-height: 110px; resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; background: var(--red); color: #fff; border: none; border-radius: 50px; padding: 13px; font-size: 14px; font-weight: 700; cursor: pointer; transition: opacity .2s; margin-top: 4px; }
.btn-submit:hover { opacity: .88; }
.map-wrap { margin-top: 48px; border-radius: 16px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #080d12; color: #ccc; }
.footer-cta-band { background: var(--red); padding: 52px 28px; }
.footer-cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cta-text h2 { font-size: 26px; font-weight: 400; font-family: var(--font-head); color: #fff; margin-bottom: 6px; }
.footer-cta-text p { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-cta-btn { background: #fff; color: var(--red); font-size: 14px; font-weight: 800; padding: 14px 28px; border-radius: 50px; white-space: nowrap; transition: transform .2s; }
.footer-cta-btn:hover { transform: translateY(-2px); }
.footer-body { max-width: 1200px; margin: 0 auto; padding: 64px 28px 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-socials-row { display: flex; gap: 10px; }
.fs-btn { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .2s; }
.fs-btn:hover { transform: translateY(-3px); }
.fs-fb { background: #1877F2; } .fs-ig { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); } .fs-wa { background: #25D366; }
.footer-col-title { font-size: 10.5px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-col-title.mt-4 { margin-top: 32px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color .2s; }
.footer-nav-list li a:hover { color: #fff; }
.footer-hours { display: flex; flex-direction: column; gap: 0; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.45); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-hours li span:first-child { color: rgba(255,255,255,0.7); font-weight: 500; }
.closed { color: var(--red) !important; font-weight: 600; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0 40px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.25); }

/* WhatsApp */
.wa-btn { position: fixed; bottom: 28px; right: 28px; z-index: 1500; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; border-radius: 50px; padding: 10px 18px 10px 10px; box-shadow: 0 6px 24px rgba(37,211,102,0.45); font-size: 13.5px; font-weight: 700; transition: transform .2s; }
.wa-btn:hover { transform: translateY(-3px); }
.wa-btn svg { width: 36px; height: 36px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hamburger { display: flex; }
  .nav-phone-btn { display: none; }
  .navbar { position: fixed; top: 0; left: 0; right: 0; height: 64px; z-index: 9999; }
  body { padding-top: 64px; }
  .nav-menu { display: none !important; flex-direction: column; align-items: flex-start; gap: 0; position: fixed; top: 64px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.12); padding: 8px 0 20px; z-index: 9998; max-height: calc(100vh - 64px); overflow-y: auto; overflow-x: hidden; }
  .nav-menu.open { display: flex !important; }
  .nav-menu li { width: 100%; }
  .nav-link { display: block !important; padding: 14px 24px; font-size: 15px; border-bottom: 1px solid #f5f5f5; white-space: normal; }
  .dropdown-menu {
    position: static !important; box-shadow: none !important; border: none !important;
    border-radius: 0 !important; opacity: 1 !important; visibility: visible !important;
    transform: none !important; background: #fafafa; padding: 0;
    z-index: auto !important; max-height: 0; overflow: hidden;
    transition: max-height .3s ease !important;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 600px; }
  .dropdown-menu li a { padding: 11px 24px 11px 40px; font-size: 14px; border-bottom: 1px solid #f0f0f0; display: block; }
  .dropdown-menu li:last-child a { border-bottom: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .page-hero h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .wa-btn { padding: 10px; border-radius: 50%; right: 16px; bottom: 16px; }
  .wa-label { display: none; }
}
