@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --blue:         #b125a5;
  --blue-dark:    #411a89;
  --blue-pale:    color-mix(in srgb, #b125a5 10%, white);
  --blue-mid:     color-mix(in srgb, #b125a5 6%, white);
  --off-white:    #f5f6f8;
  --border:       #e3e6ec;
  --text:         #0f1523;
  --text-lt:      #4b5468;
  --text-xs:      #8b93a6;
  --font-serif:   'Sora', system-ui, sans-serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 36px rgba(0,0,0,.12);
  --radius:       10px;
  --radius-lg:    16px;
  --t:            .2s;
}

/* ─────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--text); background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); transition: color var(--t); }
a:hover { color: var(--blue-dark); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.skip-link { position: absolute; top: -60px; left: 16px; background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 6px 6px; font-weight: 600; z-index: 9999; text-decoration: none; transition: top .15s; }
.skip-link:focus { top: 0; }

/* ─────────────────────────────────────────
   TOPBAR
───────────────────────────────────────── */
.topbar { background: #411a89; color: rgba(255,255,255,.75); padding: 8px 0; font-size: 12.5px; }
.topbar-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; }
.topbar-phone { color: #fff; font-weight: 900; text-decoration: none; letter-spacing: .3px; }
.topbar-phone:hover { text-decoration: underline; color: #fff; }

/* ─────────────────────────────────────────
   HEADER + NAV
───────────────────────────────────────── */
.site-header { background: #b125a5; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 0 rgba(0,0,0,.15); }
.header-inner { max-width: 1160px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: 66px; gap: 12px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 6px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: #fff; line-height: 1.1; display: block; white-space: nowrap; }
.logo-sub { font-size: 10.5px; color: rgba(255,255,255,.6); margin-top: 1px; display: block; }

/* Nav — hidden on all sizes, hamburger drawer used instead */
#main-nav { display: none !important; }
#main-nav > ul > li > a,
#main-nav > ul > li > .btn-callnow { color: rgba(255,255,255,.88); text-decoration: none; padding: 7px 12px; border-radius: 6px; font-size: 13.5px; font-weight: 500; display: block; transition: all var(--t); white-space: nowrap; }
#main-nav > ul > li > a:hover,
#main-nav > ul > li > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.18); }
.btn-callnow { background: rgba(255,255,255,.15) !important; border: 1.5px solid rgba(255,255,255,.3) !important; font-weight: 700 !important; }
.btn-callnow:hover { background: rgba(255,255,255,.28) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.drop-arrow { font-size: 9px; margin-left: 2px; opacity: .65; pointer-events: none; }
.drop-toggle { display: none; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; padding: 6px 8px; font-size: 12px; line-height: 1; vertical-align: middle; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); min-width: 220px; box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden; }
.dropdown::before { content: ''; position: absolute; top: -6px; left: 20px; width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--border); border-top: 1px solid var(--border); transform: rotate(45deg); }
.has-dropdown.drop-open > .dropdown { display: block; animation: fadeDown .15s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown li { border-bottom: 1px solid var(--border); }
.dropdown li:last-child { border-bottom: none; }
.dropdown li a { display: block; padding: 11px 18px; font-size: 13.5px; color: var(--text); text-decoration: none; font-weight: 500; transition: background var(--t); }
.dropdown li a:hover { background: var(--off-white); color: var(--blue); }

/* Mobile hamburger */
.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.25); border-radius: 8px; cursor: pointer; padding: 9px; margin-left: auto; flex-shrink: 0; transition: background .15s; }
.nav-toggle:hover { background: rgba(255,255,255,.28); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.breadcrumb-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { list-style: none; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: 12.5px; color: var(--text-xs); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 4px; color: var(--border); }
.breadcrumb a { color: var(--text-xs); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb li[aria-current] { color: var(--text-lt); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero { background: #b125a5; color: #fff; padding: 104px 28px 116px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 120%, rgba(255,255,255,.07) 0%, transparent 60%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: #fff; clip-path: ellipse(55% 100% at 50% 100%); }
.hero-content { max-width: 680px; margin: 0 auto; position: relative; }
.hero-label { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); padding: 5px 14px; border-radius: 20px; font-size: 11.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 22px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(32px, 5.5vw, 58px); font-weight: 800; line-height: 1.08; letter-spacing: -.5px; margin-bottom: 18px; }
.hero-sub { font-size: 18px; opacity: .88; line-height: 1.7; max-width: 560px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--radius); font-weight: 700; font-size: 15px; text-decoration: none; transition: all .2s; }
.hero-btn-primary { background: #fff; color: #b125a5; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.hero-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); color: #411a89; background: #fff; }
.hero-btn-outline { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.35); }
.hero-btn-outline:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.hero-review-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); padding: 8px 16px; border-radius: 24px; font-size: 13px; font-weight: 600; margin-bottom: 28px; margin-top: -6px; }

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero { background: #b125a5; color: #fff; padding: 64px 28px; position: relative; overflow: hidden; background-size: cover !important; background-position: center !important; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -.3px; margin-bottom: 10px; }
.page-hero p { opacity: .84; font-size: 16px; max-width: 600px; line-height: 1.65; }
.page-hero a { color: rgba(255,255,255,.9); }

/* ─────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────── */
.trust-strip { background: #411a89; padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); }
.trust-item .ti-icon { font-size: 26px; flex-shrink: 0; }
.trust-item .ti-label { display: block; font-weight: 700; font-size: 14px; color: #fff; }
.trust-item .ti-sub { display: block; font-size: 11.5px; opacity: .65; margin-top: 2px; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
section { padding: 88px 0; }
section.tight { padding: 60px 0; }
.section-tag { display: inline-block; color: var(--blue); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.15; color: var(--text); letter-spacing: -.3px; }
.section-desc { font-size: 16px; color: var(--text-lt); max-width: 580px; line-height: 1.7; margin-top: 10px; }
.divider { height: 3px; width: 48px; background: var(--blue); border: none; border-radius: 2px; margin: 14px 0; }
.divider.center { margin: 14px auto; }
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header.center .divider { margin: 14px auto; }
.section-header.center .section-desc { margin: 10px auto 0; }

/* ─────────────────────────────────────────
   CARDS
───────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow .2s, transform .2s, border-color .2s; }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.card-icon { width: 46px; height: 46px; background: var(--blue-mid); border-radius: var(--radius); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; color: var(--blue); }
.card h3 { font-family: var(--font-serif); font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card p { font-size: 14px; color: var(--text-lt); line-height: 1.75; margin-bottom: 16px; }
.card-link { color: var(--blue); font-weight: 600; font-size: 13.5px; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap .15s; }
.card-link:hover { gap: 8px; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px; text-decoration: none; transition: all var(--t); border: 2px solid transparent; cursor: pointer; font-family: var(--font-sans); }
.btn-primary {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(26,86,219,.3), inset 0 1px 1px rgba(255,255,255,.2);
  animation: blue-glow 2.5s ease-in-out infinite;
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-1px); animation: none; }
.btn-outline-blue { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); border-color: rgba(255,255,255,.4); }
.btn-white:hover { background: rgba(255,255,255,.9); color: var(--blue-dark); }

/* ─────────────────────────────────────────
   AREA PILLS
───────────────────────────────────────── */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill { background: var(--blue-pale); color: var(--blue); padding: 8px 18px; border-radius: 20px; font-size: 13.5px; font-weight: 600; text-decoration: none; border: 1px solid color-mix(in srgb, var(--blue) 18%, white); transition: all var(--t); }
.area-pill:hover { background: var(--blue); color: #fff; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow .2s; display: flex; flex-direction: column; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: 14.5px; color: var(--text-lt); line-height: 1.8; font-style: italic; flex: 1; margin-bottom: 20px; position: relative; padding-top: 24px; }
.testimonial-text::before { content: '"'; font-family: var(--font-serif); font-size: 64px; color: var(--blue); opacity: .15; position: absolute; top: -14px; left: -4px; line-height: 1; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); margin-top: auto; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #b125a5, #411a89); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 16px; font-family: var(--font-serif); flex-shrink: 0; }
.test-name { font-weight: 700; font-size: 14px; color: var(--text); }
.test-loc { font-size: 12px; color: var(--text-xs); margin-top: 2px; }

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 16px 20px; background: transparent; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background var(--t); }
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--blue-mid); color: var(--blue); }
.faq-question svg { width: 18px; height: 18px; fill: currentColor; transition: transform .25s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; padding: 0 20px; transition: max-height .32s ease, padding .32s ease; font-size: 14.5px; color: var(--text-lt); line-height: 1.8; background: var(--blue-mid); }
.faq-answer.open { max-height: 500px; padding: 14px 20px 20px; }

/* ─────────────────────────────────────────
   CONTENT + SIDEBAR
───────────────────────────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 290px; gap: 56px; align-items: start; }
.prose h2 { font-family: var(--font-serif); font-size: 23px; font-weight: 700; margin: 32px 0 12px; color: var(--text); }
.prose h3 { font-size: 17px; font-weight: 700; margin: 22px 0 10px; }
.prose p { font-size: 15.5px; color: var(--text-lt); line-height: 1.85; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 10px 0 16px 22px; font-size: 15px; color: var(--text-lt); line-height: 1.85; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--blue); font-weight: 500; }
.quick-answer { background: var(--blue-pale); border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin-bottom: 28px; font-size: 15px; line-height: 1.75; color: var(--text); }
.quick-answer strong { color: var(--blue); }
.sidebar-card { background: linear-gradient(145deg, #b125a5, #411a89); color: #fff; border-radius: var(--radius-lg); padding: 24px; margin-bottom: 18px; }
.sidebar-card h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.sidebar-card p { font-size: 13px; opacity: .82; margin-bottom: 14px; line-height: 1.6; }
.sc-phone { display: block; font-family: var(--font-serif); font-size: 26px; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -.5px; margin-bottom: 10px; }
.sc-phone:hover { opacity: .88; color: #fff; }
.sidebar-nav ul { list-style: none; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a { display: flex; align-items: center; gap: 8px; padding: 12px 16px; font-size: 14px; color: var(--text); text-decoration: none; transition: all var(--t); font-weight: 500; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--blue-pale); color: var(--blue); }
.sidebar-nav a.active { font-weight: 700; }

/* ─────────────────────────────────────────
   ABOUT SPLIT
───────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.stat-row { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.stat-item .stat-num { font-family: var(--font-serif); font-size: 38px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-item .stat-lbl { font-size: 12.5px; color: var(--text-xs); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.img-placeholder { background: linear-gradient(145deg, var(--blue-pale), color-mix(in srgb, #b125a5 18%, white)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: var(--text-xs); font-size: 13px; text-align: center; position: relative; }
.img-badge { position: absolute; bottom: -16px; right: -16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md); min-width: 120px; }
.img-badge strong { display: block; font-size: 14px; color: var(--text); font-family: var(--font-serif); }
.img-badge span { font-size: 11.5px; color: var(--text-xs); display: block; margin-top: 2px; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.contact-box { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.contact-box .icon { font-size: 24px; margin-bottom: 8px; }
.contact-box h3 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-xs); margin-bottom: 6px; }

/* ─────────────────────────────────────────
   FORM
───────────────────────────────────────── */
.form-field label { display: block; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-xs); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14.5px; font-family: var(--font-sans); color: var(--text); background: #fff; transition: border-color var(--t), box-shadow var(--t); outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-pale); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, #b125a5 0%, #411a89 100%); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(255,255,255,.08), transparent); pointer-events: none; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.3px; margin-bottom: 14px; position: relative; }
.cta-band p { opacity: .86; max-width: 500px; margin: 0 auto 32px; font-size: 17px; line-height: 1.65; position: relative; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: #411a89; }
.footer-top { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer-logo { font-family: var(--font-serif); font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 14px; max-width: 256px; }
.footer-brand address { font-style: normal; font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 10px; }
.footer-phone { color: #fff; font-size: 18px; font-weight: 900; text-decoration: none; font-family: var(--font-serif); display: block; margin-bottom: 4px; letter-spacing: -.3px; }
.footer-phone:hover { opacity: .85; color: #fff; }
.footer-email { font-size: 12.5px; color: rgba(255,255,255,.55); text-decoration: none; }
.footer-email:hover { color: rgba(255,255,255,.88); }
.footer-col h3 { font-size: 10.5px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.38); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.hours-tbl { font-size: 12px; color: rgba(255,255,255,.55); width: 100%; border-collapse: collapse; }
.hours-tbl tr + tr { border-top: 1px solid rgba(255,255,255,.06); }
.hours-tbl td { padding: 5px 8px 5px 0; vertical-align: top; }
.hours-tbl td:first-child { font-weight: 700; color: rgba(255,255,255,.82); white-space: nowrap; width: 52px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.82); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-split { gap: 44px; }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  section { padding: 60px 0; }
  section.tight { padding: 44px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 72px 18px 100px; }
  .page-hero { padding: 44px 18px; }
  /* ── HAMBURGER ALWAYS SHOWN — drawer handles all nav ── */
  .stat-row { gap: 20px; }
  .img-badge { bottom: -10px; right: -10px; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-btns, .cta-band .btn-row { flex-direction: column; align-items: center; }
}

/* ── RED CALL-NOW BUTTON ── */
.btn-callnow-red {
  display: inline-flex; align-items: center; gap: 6px;
  background: #dc2626 !important;
  color: #fff !important;
  border: 2px solid #b91c1c !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  text-decoration: none !important;
  transition: all .18s;
  white-space: nowrap;
  letter-spacing: .2px;
}
.btn-callnow-red:hover {
  background: #b91c1c !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220,38,38,.35);
  color: #fff !important;
}

/* ── RED HERO CALL BUTTON ── */
.hero-btn-call {
  background: #dc2626;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
  font-weight: 800;
  font-size: 20px !important;
  letter-spacing: .3px;
}
.hero-btn-call:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,.45);
  color: #fff;
}

/* ── DENTAL IMAGE WRAPPER ── */
.dental-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dental-img-wrap img {
  width: 100%; height: 480px; object-fit: contain; display: block;
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

/* ── MOBILE SITEMAP DRAWER ── */
.mobile-sitemap {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 340px;
  background: #fff;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,.25);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  flex-direction: column;
}
.mobile-sitemap.open {
  display: flex;
  transform: translateX(0);
}
.mobile-sitemap-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
  backdrop-filter: blur(2px);
}
.mobile-sitemap-overlay.open { display: block; }
.mobile-sitemap-header {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--blue); color: #fff;
  padding: 16px 20px;
  flex-shrink: 0;
}
.mobile-sitemap-title {
  font-family: var(--font-serif); font-size: 17px; font-weight: 700;
}
.mobile-sitemap-close {
  background: rgba(255,255,255,.2); border: none; color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 14px; cursor: pointer; display: grid; place-items: center;
  transition: background .15s;
}
.mobile-sitemap-close:hover { background: rgba(255,255,255,.35); }
.mobile-sitemap-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 20px; }
.mobile-call-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #dc2626; color: #fff !important;
  padding: 16px 20px; border-radius: var(--radius);
  font-weight: 900; font-size: 20px; text-decoration: none;
  box-shadow: 0 4px 12px rgba(220,38,38,.3);
  letter-spacing: .3px;
}
.mobile-call-btn:hover { background: #b91c1c; color: #fff !important; }
.mobile-sitemap-section { border-top: 1px solid var(--border); padding-top: 16px; }
.mobile-sitemap-heading {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-xs); margin-bottom: 10px;
}
.mobile-sitemap-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-sitemap-links a {
  display: block; padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--text); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: background .15s;
}
.mobile-sitemap-links a:hover { background: var(--blue-pale); color: var(--blue); }



/* ── KEYWORD CONTENT SECTIONS ── */
.kw-section-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.kw-section-wrap.kw-reverse {
  grid-template-columns: 420px 1fr;
}
.kw-section-content { }
.kw-section-img img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--off-white);
}
@media (max-width: 1024px) {
  .kw-section-wrap,
  .kw-section-wrap.kw-reverse {
    grid-template-columns: 1fr;
  }
  .kw-section-wrap.kw-reverse .kw-section-img { order: -1; }
  .kw-section-img img { height: 300px; }
}

/* ── HTML SITEMAP PAGE ── */
.sitemap-grid { display: flex; flex-direction: column; gap: 48px; }
.sm-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.sm-heading {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.sm-heading-icon { font-size: 22px; }
.sm-count { margin-left: auto; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-xs); background: var(--off-white); padding: 3px 10px; border-radius: 20px; font-family: var(--font-sans); }
.sm-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.sm-list li a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  transition: background var(--t), color var(--t);
  border: 1px solid transparent;
}
.sm-list li a:hover { background: var(--blue-pale); border-color: var(--blue-mid); color: var(--blue); }
.sm-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.sm-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sm-text strong { font-size: 14px; font-weight: 700; color: inherit; }
.sm-text span { font-size: 12px; color: var(--text-xs); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 768px) { .sm-list { grid-template-columns: 1fr; } }

/* ── PULSING RED ANIMATION ── */
@keyframes blue-glow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(26,86,219,.3), inset 0 0 0px rgba(255,255,255,0), inset 0 1px 1px rgba(255,255,255,.2);
  }
  50% {
    box-shadow: 0 6px 24px rgba(26,86,219,.5), inset 0 0 14px rgba(100,160,255,.25), inset 0 1px 1px rgba(255,255,255,.3);
  }
}
@keyframes inner-glow {
  0%, 100% {
    box-shadow:
      0 4px 16px rgba(220,38,38,.5),
      inset 0 0 0px rgba(255,255,255,0),
      inset 0 1px 1px rgba(255,255,255,.18);
  }
  50% {
    box-shadow:
      0 6px 28px rgba(220,38,38,.7),
      inset 0 0 18px rgba(255,120,120,.35),
      inset 0 1px 1px rgba(255,255,255,.28);
  }
}
.pulse-red {
  animation: inner-glow 2.2s ease-in-out infinite;
}
/* All red call buttons also inner-glow */
.hero-btn-call, .btn-callnow-red, .mobile-call-btn, .hours-call-btn, .float-call-btn {
  animation: inner-glow 2.2s ease-in-out infinite;
}

/* ── HOURS BAR + MAP ── */
.hours-bar-section {
  background: #0f1523;
  padding: 52px 0;
}
.hours-bar-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.hours-bar-info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.hours-247 {
  font-size: 18px;
  font-weight: 700;
  color: #4ade80;
  margin-bottom: 20px;
  letter-spacing: .3px;
}
.hours-bar-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin-bottom: 20px;
}
.hb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hb-day {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  width: 30px;
  flex-shrink: 0;
}
.hb-time {
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.hb-time.hb-closed { color: #f87171; }
.hb-time.hb-247 { color: #4ade80; font-weight: 700; }
.hours-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #fff !important;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(220,38,38,.4);
  transition: background .18s, transform .18s;
  letter-spacing: .3px;
}
.hours-call-btn:hover { background: #b91c1c; transform: translateY(-2px); color: #fff; }
.hours-bar-map iframe { border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.4); }
@media (max-width: 900px) {
  .hours-bar-grid { grid-template-columns: 1fr; }
  .hours-bar-table { grid-template-columns: 1fr; }
}

/* ── CALL NOW SMALL BUTTON ── */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dc2626;
  color: #fff !important;
  text-decoration: none !important;
  padding: 7px 16px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .18s;
  margin-bottom: 6px;
  animation: inner-glow 2.2s ease-in-out infinite;
}
.call-now-btn:hover { background: #b91c1c; transform: translateY(-1px); color: #fff !important; animation: none; }

/* ── FLOATING PHONE BUTTON ── */
.float-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8888;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #dc2626;
  color: #fff !important;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-sans);
  box-shadow: 0 4px 20px rgba(220,38,38,.45);
  transition: transform .18s, background .18s;
  white-space: nowrap;
  letter-spacing: .3px;
}
.float-call-btn:hover {
  background: #b91c1c;
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}
.float-call-btn svg { flex-shrink: 0; }
@media (max-width: 600px) {
  .float-call-btn span { display: none; }
  .float-call-btn { padding: 16px; border-radius: 50%; bottom: 20px; right: 16px; }
}