/* ============================================================
   SERVICE PAGES — Shared Stylesheet
   Matches index.html design: Navy #1A3A6B · Gold #B8962E
   Playfair Display (headings) + Inter (body)
   ============================================================ */

/* --- Skip Link --------------------------------------------- */
.skip-link { position: absolute; top: -100%; left: 0; background: #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;
  --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.25;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

/* --- Scroll Progress Bar ----------------------------------- */
#progress-bar {
  position: fixed; top: 0; left: 0; width: 0%;
  height: 3px; background: var(--gold); z-index: 9999;
  transition: width 0.1s 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; list-style: none; }
.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); }
.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); }
.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); }

/* --- Breadcrumb -------------------------------------------- */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  padding-top: calc(70px + 0.75rem);
}
.breadcrumb ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem;
  max-width: 1200px; margin: 0 auto;
  font-size: 0.82rem; color: var(--muted);
}
.breadcrumb li + li::before { content: '›'; margin-right: 0.35rem; color: var(--muted); }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--muted); font-weight: 500; }

/* --- Page Hero --------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, var(--navy-md) 100%);
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(184,150,46,0.15); border: 1px solid rgba(184,150,46,0.3);
  border-radius: 100px; margin-bottom: 1.25rem;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-lt);
  letter-spacing: 0.1em; text-transform: uppercase; position: relative;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700;
  color: var(--white); position: relative;
  max-width: 820px; margin: 0 auto 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78); max-width: 680px;
  margin: 0 auto 2rem; position: relative;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap; position: relative;
}
.btn-primary {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy-dk); border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(184,150,46,0.35);
  transition: all var(--ease); white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,150,46,0.45);
  color: var(--navy-dk);
}
.btn-ghost {
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--ease); white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* --- Page Content Layout ----------------------------------- */
.page-content {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem; align-items: start;
}
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 90px; }

/* --- Section Styles ---------------------------------------- */
.section-label {
  display: block; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.content-section { margin-bottom: 3rem; }
.content-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy);
  margin-bottom: 1rem; border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem; display: inline-block;
}
.content-section h3 {
  font-size: 1.15rem; color: var(--navy-md); margin: 1.5rem 0 0.5rem;
}
.content-section p { margin-bottom: 1rem; color: var(--text); }
.content-section ul, .content-section ol {
  padding-left: 1.5rem; margin-bottom: 1rem;
}
.content-section li { margin-bottom: 0.4rem; }

/* Checklist */
.checklist { list-style: none !important; padding: 0 !important; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg); border-radius: var(--r-sm);
  margin-bottom: 0.5rem; font-size: 0.95rem;
}
.checklist li::before {
  content: '✓'; flex-shrink: 0; width: 22px; height: 22px;
  background: var(--gold); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; margin-top: 0.1rem;
}

/* Warning box */
.warning-box {
  background: #FFF8E8; border-left: 4px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.warning-box .warning-title {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.warning-box ul { list-style: none !important; padding: 0 !important; }
.warning-box li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  padding: 0.35rem 0; font-size: 0.92rem; color: var(--text);
}
.warning-box li::before { content: '✗'; color: #C0392B; font-weight: 700; flex-shrink: 0; }

/* Info callout */
.info-callout {
  background: linear-gradient(135deg, rgba(26,58,107,0.05) 0%, rgba(26,58,107,0.02) 100%);
  border: 1px solid rgba(26,58,107,0.12);
  border-radius: var(--r); padding: 1.5rem;
  margin: 1.5rem 0;
}
.info-callout p { margin: 0; font-size: 0.95rem; }
.info-callout strong { color: var(--navy); }

/* --- Sidebar Card ------------------------------------------ */
.sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.75rem;
  box-shadow: var(--sh-md); margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}
.sidebar-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.7rem 0.9rem; border: 1.5px solid var(--border);
  border-radius: var(--r-sm); font-size: 0.9rem; font-family: inherit;
  color: var(--text); background: var(--white);
  transition: border-color var(--ease);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  padding: 0.9rem; width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy-dk); border: none; border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(184,150,46,0.3);
  transition: all var(--ease);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(184,150,46,0.4); }
.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.25rem; }

/* Sidebar contact card */
.sidebar-contact-card {
  background: var(--navy); border-radius: var(--r);
  padding: 1.5rem; color: var(--white);
}
.sidebar-contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold-lt); margin-bottom: 1rem;
}
.contact-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg { flex-shrink: 0; opacity: 0.7; }
.contact-item a { color: var(--gold-lt); font-weight: 600; }

/* Related services sidebar */
.related-services { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.related-services li a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 0.75rem; border-radius: var(--r-sm);
  font-size: 0.88rem; color: var(--text);
  transition: all var(--ease); background: var(--bg);
}
.related-services li a:hover { background: var(--gold-pale); color: var(--navy); padding-left: 1rem; }
.related-services li a::before { content: '→'; color: var(--gold); font-weight: 700; }

/* Download Forms */
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.download-card {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  text-decoration: none; transition: all var(--ease);
}
.download-card:hover { border-color: var(--gold); box-shadow: 0 4px 12px rgba(184,150,46,0.15); transform: translateY(-1px); }
.download-card__icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--navy), var(--navy-md));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white); font-size: 1rem;
}
.download-card strong { display: block; font-size: 0.88rem; color: var(--navy); font-weight: 600; line-height: 1.3; }
.download-card span { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.download-note { font-size: 0.82rem; color: var(--muted); font-style: italic; margin-top: 0.5rem; }
@media (max-width: 640px) { .download-grid { grid-template-columns: 1fr; } }

/* --- FAQ Section ------------------------------------------- */
.faq-section {
  background: var(--bg); border-radius: var(--r);
  padding: 2rem; margin-top: 2.5rem;
}
.faq-section h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; text-align: left; font-family: inherit;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  gap: 1rem;
}
.faq-question svg { flex-shrink: 0; transition: transform var(--ease); color: var(--gold); }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.92rem; color: var(--muted);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-bottom: 0;
}
.faq-answer.open { max-height: 400px; padding-bottom: 1rem; }

/* --- CTA Section ------------------------------------------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  border-radius: var(--r); padding: 2.5rem 2rem;
  text-align: center; margin-top: 3rem;
}
.cta-section h2 {
  color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 1.75rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* --- Footer ------------------------------------------------ */
.footer {
  background: var(--navy-dk);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  color: rgba(255,255,255,0.65);
}
.footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem;
}
.footer__tagline { font-size: 0.8rem; color: var(--gold-lt); margin-bottom: 1rem; }
.footer__desc { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer__social { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer__social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.875rem;
  transition: all var(--ease); text-decoration: none;
}
.footer__social-link:hover { background: var(--gold); color: var(--navy-dk); }
.footer__social-link.social-fb { color: #5b9cf6; }
.footer__social-link.social-ig { color: #f06292; }
.footer__social-link.social-yelp { color: #ff6b6b; }
.footer__social-link.social-fb:hover,.footer__social-link.social-ig:hover,.footer__social-link.social-yelp:hover { color: var(--navy-dk); }
.footer__col h4 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer__col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.footer__col ul a:hover { color: var(--gold-lt); }
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem;
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--gold-lt); }

/* --- Mobile Sticky Bar ------------------------------------- */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800; padding: 0.6rem 1rem;
  background: rgba(8,18,40,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 0.5rem;
}
.mobile-bar a {
  flex: 1; padding: 0.8rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-align: center;
  transition: all var(--ease);
}
.mobile-bar .bar-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy-dk);
}
.mobile-bar .bar-book {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

/* --- Animations -------------------------------------------- */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .page-content {
    grid-template-columns: 1fr;
  }
  .content-sidebar { position: static; }
}

@media (max-width: 768px) {
  .navbar__links, .navbar__actions { display: none; }
  .navbar__toggle { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
