/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link { position: absolute; top: -100%; left: 0; background: var(--navy, #1A3A6B); color: #fff; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 600; z-index: 9999; text-decoration: none; border-radius: 0 0 4px 0; }
.skip-link:focus { top: 0; }

/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #1A3A6B;
  --navy-dk:   #0D2244;
  --navy-md:   #1E4D8C;
  --gold:      #B8962E;
  --gold-lt:   #D4AE4A;
  --gold-pale: #FFF8E8;
  --white:     #FFFFFF;
  --bg:        #F4F7FB;
  --bg-dark:   #080F1C;
  --border:    #E2E8F0;
  --text:      #1C2B3A;
  --muted:     #5A6A7A;
  --r:         14px;
  --r-sm:      8px;
  --sh-sm:     0 2px 8px rgba(0,0,0,0.06);
  --sh-md:     0 8px 32px rgba(0,0,0,0.10);
  --sh-lg:     0 24px 64px rgba(0,0,0,0.14);
  --ease:      0.25s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
p { color: var(--muted); line-height: 1.75; }
a { text-decoration: none; color: var(--gold); transition: color var(--ease); }
a:hover { color: var(--gold-lt); }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 48px 0; }
.section--alt { background: var(--bg); }
.section--dark { background: var(--navy-dk); }

.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.eyebrow--lt { color: var(--gold-lt); }
.section-title { font-size: clamp(26px, 4vw, 40px); color: var(--navy); margin-bottom: 14px; }
.section-title--lt { color: var(--white); }
.section-sub { font-size: 16px; color: var(--muted); max-width: 580px; margin-bottom: 28px; line-height: 1.8; }
.section-sub--lt { color: rgba(255,255,255,0.62); }
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header--center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 999px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.3px; cursor: pointer; border: none; transition: all var(--ease); white-space: nowrap; text-decoration: none; }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-md); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,107,0.3); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,46,0.35); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); width: 0%; z-index: 9999; transition: width 0.08s linear; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color var(--ease), box-shadow var(--ease); padding: 0 24px; }
.navbar.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.navbar__inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.navbar__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar__logo-seal { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.navbar__logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); }
.navbar__logo-sub { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }
.navbar__links { display: flex; align-items: center; gap: 28px; }
.navbar__links a { font-size: 13.5px; font-weight: 500; color: var(--muted); transition: color var(--ease); }
.navbar__links a:hover, .navbar__links a.active { color: var(--navy); font-weight: 600; }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__phone { font-size: 16px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; text-decoration: none; }
.navbar__phone:hover { color: var(--navy-md); }
.navbar__text { font-size: 13px; font-weight: 600; color: var(--gold); border: 1px solid var(--gold); border-radius: 999px; padding: 5px 14px; transition: all var(--ease); }
.navbar__text:hover { background: var(--gold); color: var(--white); }
.navbar__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.navbar__toggle span { display: block; width: 23px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--ease); }
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.1); z-index: 998; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover { background: var(--bg); color: var(--navy); }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero { padding-top: 70px; background: linear-gradient(145deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-md) 100%); position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: -120px; right: -80px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(184,150,46,0.13) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; padding: 52px 24px 44px; max-width: 720px; margin: 0 auto; }
.page-hero__eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(30px, 5vw, 50px); color: var(--white); margin-bottom: 16px; letter-spacing: -0.3px; }
.page-hero__sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.8; max-width: 520px; margin: 0 auto; }
.page-hero__sub p { color: rgba(255,255,255,0.65); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 11px 0; }
.breadcrumb ol { display: flex; align-items: center; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; font-size: 12.5px; color: var(--muted); }
.breadcrumb li + li::before { content: '›'; margin: 0 9px; color: var(--border); font-size: 14px; }
.breadcrumb a { color: var(--navy); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-creds { background: var(--navy); border-radius: var(--r); padding: 36px; position: sticky; top: 90px; max-height: calc(100vh - 110px); overflow-y: auto; }
.about-creds__eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cred-item:last-of-type { border-bottom: none; }
.cred-icon { width: 36px; height: 36px; background: rgba(184,150,46,0.14); border: 1px solid rgba(184,150,46,0.28); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cred-icon svg { width: 18px; height: 18px; stroke: var(--gold-lt); stroke-width: 1.5; fill: none; }
.cred-label { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.35; }
.cred-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.about-stat { text-align: center; }
.about-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 26px; color: var(--gold-lt); }
.about-stat span { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.about-feature__dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0; }
.about-feature p { margin: 0; font-size: 14.5px; line-height: 1.75; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(26,58,107,0.15); }
.value-card__icon { font-size: 2rem; margin-bottom: 14px; line-height: 1; }
.value-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 14px; margin: 0; }

.county-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.county-badge { display: inline-block; padding: 8px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(184,150,46,0.4); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--gold-lt); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); text-decoration: none; display: block; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--navy-md)); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: rgba(26,58,107,0.18); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { width: 46px; height: 46px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card__icon svg { width: 22px; height: 22px; stroke: var(--navy); stroke-width: 1.5; fill: none; }
.svc-card h3 { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 7px; line-height: 1.4; }
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0 0 14px; }
.svc-card__more { font-size: 12px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 4px; }
.svc-note { margin-top: 20px; padding: 28px 36px; background: var(--bg); border: 1px dashed var(--border); border-radius: var(--r); text-align: center; }
.svc-note h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.svc-note p { font-size: 14px; margin-bottom: 20px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.45fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 1.5; fill: none; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--navy); text-decoration: none; display: block; transition: color var(--ease); }
.contact-info-value:hover { color: var(--gold); }
.contact-info-note { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.55; }
.social-row { display: flex; gap: 7px; margin-top: 6px; }
.social-btn { width: 34px; height: 34px; background: var(--bg); border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--muted); text-decoration: none; transition: all var(--ease); }
.social-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.social-fb { color: #1877F2; }
.social-ig { color: #E1306C; }
.social-yelp { color: #D32323; }
.social-yt { color: #FF0000; }
.social-pin { color: #E60023; }
.social-fb:hover,.social-ig:hover,.social-yelp:hover,.social-yt:hover,.social-pin:hover { color: var(--white); }
.footer__social .social-fb { color: #5b9cf6; }
.footer__social .social-ig { color: #f06292; }
.footer__social .social-yt { color: #ff6b6b; }
.footer__social .social-pin { color: #f06292; }
.cform-box { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dk) 100%); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r); padding: 40px; box-shadow: 0 24px 64px rgba(13,34,68,0.4); }
.cform-box h2 { font-size: 26px; color: var(--white); margin-bottom: 6px; }
.cform-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.cform-sub a { color: var(--gold-lt) !important; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.form-group label { font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.form-group .req { color: var(--gold-lt); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.18); border-radius: var(--r-sm); font-size: 14px; color: var(--white); font-family: 'Inter', sans-serif; outline: none; transition: border-color var(--ease), background var(--ease), box-shadow var(--ease); appearance: none; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: 0.6; cursor: pointer; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-lt); background: rgba(255,255,255,0.13); box-shadow: 0 0 0 3px rgba(184,150,46,0.2); color: var(--white); }
.form-group select option { background: var(--navy-dk); color: var(--white); }
.form-group textarea { min-height: 105px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; background: var(--gold); color: var(--navy-dk); border: none; border-radius: 999px; font-size: 15px; font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer; transition: background var(--ease), transform var(--ease); margin-top: 4px; }
.form-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }
.form-success { display: none; margin-top: 16px; padding: 16px 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--r-sm); font-size: 14px; color: var(--white); text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; transition: box-shadow var(--ease); }
.faq-item.open { box-shadow: var(--sh-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); transition: color var(--ease); }
.faq-item.open .faq-q { color: var(--navy); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; fill: none; flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a p { padding: 0 24px; font-size: 14px; line-height: 1.8; margin: 0; }
.faq-a a { color: var(--navy); font-weight: 500; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: linear-gradient(135deg, var(--navy-dk), var(--navy)); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,150,46,0.13), transparent 65%); border-radius: 50%; pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 14px; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,0.62); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.final-cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-dark); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__brand-name { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--white); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__seal { width: 32px; height: 32px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.footer__seal svg { width: 16px; height: 16px; stroke: white; stroke-width: 1.5; fill: none; }
.footer__tagline p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 18px; max-width: 260px; }
.footer__contact-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; text-decoration: none; transition: color var(--ease); }
.footer__contact-row:hover { color: var(--white); }
.footer__contact-row svg { width: 13px; height: 13px; stroke: var(--gold); stroke-width: 2; fill: none; flex-shrink: 0; }
.footer__social { display: flex; gap: 7px; margin-top: 16px; }
.footer__social a { width: 32px; height: 32px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: all var(--ease); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer__col h4 { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 18px; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer__col a:hover { color: var(--white); }
.footer__bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-dk); z-index: 998; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.1); gap: 10px; }
.mobile-sticky a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 13px 10px; border-radius: 8px; font-size: 14px; font-weight: 700; text-decoration: none; letter-spacing: 0.2px; }
.mobile-sticky__call { background: var(--gold); color: var(--white); }
.mobile-sticky__call:hover { background: var(--gold-lt); color: var(--white); }
.mobile-sticky__text { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(184,150,46,0.5); }
.mobile-sticky__text:hover { background: rgba(184,150,46,0.2); color: var(--white); }
.mobile-sticky__appt { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.mobile-sticky__appt:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.mobile-sticky svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; flex-shrink: 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.40s; } .d6 { transition-delay: 0.48s; }

/* ============================================================
   LOC / HOSPITAL / SENIOR-CARE LAYOUT
   ============================================================ */
.loc-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .loc-layout { grid-template-columns: 1fr; } .loc-sidebar { order: -1; } }

.suncity-callout { background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 2rem 0; }
.suncity-callout h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.6rem; }
.suncity-callout p { color: var(--muted); font-size: 0.93rem; line-height: 1.75; margin: 0; }

.loc-sidebar__box { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dk) 100%); border-radius: 12px; padding: 1.75rem; position: sticky; top: 90px; }
.loc-sidebar__box h3 { color: var(--gold); font-size: 1.1rem; margin: 0 0 0.4rem; }
.loc-sidebar__box .sidebar-sub { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 1.25rem; line-height: 1.5; }
.sidebar-phone { display: block; width: 100%; text-align: center; background: var(--gold); color: #000; font-weight: 700; font-size: 1rem; padding: 0.8rem; border-radius: 8px; text-decoration: none; margin-bottom: 1.25rem; transition: background .2s; }
.sidebar-phone:hover { background: var(--gold-lt); }
.sb-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.25rem 0; }

.sb-form-group { margin-bottom: 0.85rem; }
.sb-form-group label { display: block; color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.sb-form-group input, .sb-form-group select, .sb-form-group textarea { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; color: #fff; font-size: 0.88rem; padding: 0.55rem 0.75rem; box-sizing: border-box; font-family: inherit; transition: border-color .2s; }
.sb-form-group input::placeholder, .sb-form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.sb-form-group select option { background: var(--navy-dk); color: #fff; }
.sb-form-group input:focus, .sb-form-group select:focus, .sb-form-group textarea:focus { outline: none; border-color: var(--gold-lt); }
.sb-submit { width: 100%; background: var(--gold); color: #000; font-weight: 700; font-size: 0.92rem; padding: 0.75rem; border: none; border-radius: 8px; cursor: pointer; margin-top: 0.5rem; transition: background .2s; }
.sb-submit:hover { background: var(--gold-lt); }
#sidebarSuccess { display: none; background: rgba(255,255,255,0.08); border-radius: 8px; padding: 1rem; text-align: center; color: #fff; font-size: 0.9rem; }

.sb-trust { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); }
.sb-trust-item { display: flex; gap: 0.6rem; align-items: flex-start; }
.sb-trust-item svg { width: 18px; height: 18px; fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.sb-trust-item span { color: rgba(255,255,255,0.7); font-size: 0.84rem; line-height: 1.4; }
.sb-pricing { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); }
.sb-pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sb-pricing-row:last-child { border-bottom: none; }
.sb-pricing-label { color: rgba(255,255,255,0.6); font-size: 0.82rem; }
.sb-pricing-value { color: var(--gold-lt); font-weight: 600; font-size: 0.88rem; }
.sb-pricing-note { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 0.4rem; line-height: 1.4; }

.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.25rem 0 2rem; }
@media (max-width: 600px) { .facility-grid { grid-template-columns: 1fr; } .doc-grid { grid-template-columns: 1fr; } }
.facility-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; }
.facility-card h4 { font-size: 0.95rem; margin: 0 0 0.4rem; color: var(--navy); }
.facility-card p { font-size: 0.86rem; color: var(--muted); margin: 0; line-height: 1.55; }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.5rem; padding: 0; list-style: none; margin: 1rem 0 2rem; }
.doc-grid li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.93rem; color: var(--text); }
.doc-grid li svg { color: var(--gold); flex-shrink: 0; }
.capacity-note { background: var(--bg); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 1.5rem 0 2.5rem; }
.capacity-note p { font-size: 0.93rem; color: var(--muted); margin: 0 0 0.75rem; line-height: 1.65; }
.capacity-note p:last-child { margin: 0; }
.city-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.city-tag { display: inline-block; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 0.3rem 0.85rem; font-size: 0.83rem; color: var(--navy); text-decoration: none; transition: background .2s, border-color .2s; }
.city-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.city-tag--link { text-decoration: none; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.city-tag--link:hover { background: var(--navy); border-color: var(--navy); color: white; }

.sb-success { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18); border-radius: 7px; padding: 0.9rem; font-size: 0.85rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.sb-success a { color: var(--gold); }
.sb-pricing__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.sb-pricing__row { display: flex; justify-content: space-between; font-size: 0.81rem; color: rgba(255,255,255,0.72); padding: 0.28rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sb-pricing__row strong { color: var(--gold); font-weight: 700; }
.sb-pricing__note { font-size: 0.72rem; color: rgba(255,255,255,0.38); margin-top: 0.5rem; line-height: 1.4; }

.hiw-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.hiw-step { display: flex; gap: 1rem; align-items: flex-start; }
.hiw-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: white; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; }
.hiw-step strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.hiw-step p { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.5; }

.loc-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 0.75rem; }
.loc-service-card { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; padding: 1rem 0.75rem; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; text-align: center; text-decoration: none; color: var(--text); font-size: 0.8rem; font-weight: 600; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.loc-service-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(26,58,107,0.12); transform: translateY(-2px); color: var(--navy); }
.loc-svc-icon { font-size: 1.5rem; }
.loc-service-card--more { background: transparent; border-color: var(--navy); color: var(--navy); }

.hospital-list { list-style: none; padding: 0; margin: 0.75rem 0 0.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; }
.hospital-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text); }
.hospital-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.media-section { margin: 2.5rem 0; }
.media-section:empty { display: none; }
.media-section__img { width: 100%; border-radius: 12px; display: block; }
.media-section__video { position: relative; padding-bottom: 56.25%; border-radius: 12px; overflow: hidden; }
.media-section__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.nearby-cities { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.nearby-cities h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.nearby-hospitals { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.nearby-hospitals h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.hosp-info { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin: 2rem 0; }
.hosp-info h3 { font-size: 0.95rem; color: var(--navy); margin: 0 0 0.75rem; }
.hosp-info p { font-size: 0.875rem; color: var(--muted); margin: 0 0 0.35rem; line-height: 1.5; }

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 740px; margin: 0 auto; }
.pricing-card { background: white; border: 2px solid var(--border); border-radius: 14px; padding: 2rem 1.75rem; text-align: center; }
.pricing-card--featured { border-color: var(--navy); }
.pricing-card__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 1rem; }
.pricing-card__price { font-family: 'Playfair Display', serif; font-size: 2.25rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 1.25rem; }
.pricing-card__price span { display: block; font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--muted); font-weight: 400; margin-top: 4px; }
.pricing-card__list { list-style: none; padding: 0; margin: 0 0 1.25rem; text-align: left; }
.pricing-card__list li { font-size: 0.875rem; color: var(--text); padding: 0.35rem 0 0.35rem 1.4rem; border-bottom: 1px solid var(--border); position: relative; }
.pricing-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pricing-card__sig { font-size: 0.88rem; font-weight: 700; color: var(--navy); background: rgba(26,58,107,0.07); border-radius: 6px; padding: 0.5rem 0.75rem; }
@media (max-width: 960px) { .pricing-cards { grid-template-columns: 1fr; max-width: 420px; } .hospital-list { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .loc-services-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-creds { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .navbar__links, .navbar__actions { display: none; }
  .navbar__toggle { display: flex; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta { padding: 64px 0; }
  .final-cta__actions { flex-direction: column; align-items: center; }
  .footer { padding-bottom: 80px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-sticky { display: flex; }
  .cform-box { padding: 24px 20px; }
  .page-hero__inner { padding: 40px 20px 36px; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}
