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

/* ── Variables ───────────────────────────────────────────────────── */
:root {
  --navy:  #1b3561;  --navy2: #1f3f6e;  --navy3: #25497e;
  --gold:  #5aa3d3;  --gold-light: #7fbce5;
  --goldglow: rgba(90,163,211,.35);
  --dark:  #0a1120;  --dark-2: #0d1628;  --dark-3: #111c33;
  --border: rgba(255,255,255,.08);
  --border-subtle: rgba(255,255,255,.05);
  --border-gold: rgba(90,163,211,.25);
  --white: #fff;  --white-dim: rgba(255,255,255,.65);
  --radius: 12px;  --radius-lg: 20px;
  --black: #0a1120;
  --transition: 0.2s ease;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

/* ── Announcement bar ────────────────────────────────────────────── */
.announcement-bar {
  background: var(--navy2);
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 10px 20px;
}
.announcement-bar a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* ── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,17,32,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px; height: 64px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; flex-direction: column; flex-shrink: 0; text-decoration: none; }
.logo-main { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: .06em; color: #fff; line-height: 1; }
.logo-sub  { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.main-nav { display: flex; gap: 2px; list-style: none; flex: 1; }
.main-nav a {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.6); padding: 6px 10px;
  border-radius: 6px; white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(255,255,255,.07); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { font-size: .88rem; font-weight: 700; color: var(--gold); letter-spacing: .02em; }
.btn-header {
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: .78rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }

/* Mobile menu */
.mobile-menu { display: none; flex-direction: column; background: #0a1120; border-top: 1px solid var(--border); padding: 8px 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 24px; font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.7); transition: color .15s, background .15s; }
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.04); }

/* ── Container ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Page hero (inner pages) ─────────────────────────────────────── */
.page-hero { background: linear-gradient(160deg,var(--navy) 0%,var(--navy2) 100%); padding: 72px 28px 64px; color: #fff; }
.page-hero .container {}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem,6vw,5rem);
  letter-spacing: .04em; line-height: .95; color: #fff; margin: 12px 0 20px;
}
.page-hero p { font-size: 1rem; color: var(--white-dim); max-width: 620px; line-height: 1.75; }

/* ── Sections ────────────────────────────────────────────────────── */
.section-light  { background: #f7f5f0; padding: 90px 28px; }
.section-white  { background: #fff;    padding: 90px 28px; }
.section-dark   { background: linear-gradient(160deg,var(--navy) 0%,var(--navy2) 100%); padding: 90px 28px; color: #fff; }
.section-label {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem,4vw,3.4rem);
  letter-spacing: .03em; line-height: 1.05;
  color: #fff; margin-bottom: 16px;
}
.section-title.dark, .section-title-light { color: var(--navy); }
.section-title-light { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); letter-spacing: .03em; line-height: 1.1; color: var(--navy); margin-bottom: 16px; }
.section-subtitle { font-size: 1rem; color: var(--white-dim); max-width: 600px; line-height: 1.75; margin-bottom: 48px; }
.section-light  .section-subtitle,
.section-white  .section-subtitle { color: #5374a0; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--radius); border: none; cursor: pointer;
  padding: 12px 22px; transition: all var(--transition);
}
.btn-primary     { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px var(--goldglow); }
.btn-secondary   { background: rgba(90,163,211,.15); color: var(--gold); border: 1px solid var(--border-gold); }
.btn-secondary:hover { background: rgba(90,163,211,.28); transform: translateY(-2px); }
.btn-outline     { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.28); }
.btn-outline:hover { border-color: rgba(255,255,255,.7); }
.btn-outline-gold { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-gold:hover { background: var(--navy); color: #fff; }
.btn-lg  { padding: 16px 28px; font-size: .92rem; }
.btn-sm  { padding: 8px 14px; font-size: .78rem; }
.btn-full { width: 100%; justify-content: center; display: flex; }
.btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Trust bar ───────────────────────────────────────────────────── */
.trust-bar { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-bar-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.7); white-space: nowrap;
  border-right: 1px solid var(--border); flex-shrink: 0;
}
.trust-item:last-child { border-right: none; }
.trust-dot { font-size: 1rem; }

/* ── Services grid ───────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 8px; }
.service-card {
  background: #fff; border: 1px solid rgba(27,53,97,.12);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-decoration: none; color: var(--navy);
  display: flex; flex-direction: column; gap: 10px;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,53,97,.12); border-color: var(--gold); }
.service-icon { font-size: 2rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.service-card p { font-size: .82rem; color: #5374a0; line-height: 1.65; flex: 1; }
.service-arrow { font-size: 1.1rem; color: var(--gold); margin-top: auto; }

/* ── Pricing grid ────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 8px; }
.pricing-card {
  background: #fff; border: 1px solid rgba(27,53,97,.12);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; display: flex; flex-direction: column; gap: 8px;
}
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(90,163,211,.1); }
.badge-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--black);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px;
}
.pricing-name    { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
.pricing-price   { font-family: var(--font-head); font-size: 3.5rem; color: var(--navy); line-height: 1; }
.pricing-price sup { font-family: var(--font-body); font-size: 1.2rem; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-period  { font-size: .78rem; color: #8a9abc; }
.pricing-desc    { font-size: .78rem; color: #8a9abc; margin-bottom: 12px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; flex: 1; }
.pricing-features li { font-size: .83rem; color: #5374a0; padding-left: 20px; position: relative; line-height: 1.55; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pricing-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Reviews grid ────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: #fff; border: 1px solid rgba(27,53,97,.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars    { color: #f4c430; font-size: 1rem; letter-spacing: 2px; }
.review-text     { font-size: .88rem; color: #5374a0; line-height: 1.75; font-style: italic; flex: 1; }
.reviewer-name   { font-weight: 700; font-size: .85rem; color: var(--navy); }
.reviewer-meta   { font-size: .72rem; color: #8a9abc; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list  { max-width: 780px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid rgba(27,53,97,.1); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-toggle        { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; font-weight: 400; }
.faq-answer        { display: none; padding-bottom: 20px; }
.faq-answer p      { font-size: .9rem; color: #5374a0; line-height: 1.8; }
.faq-answer.open   { display: block; }

.faq-full-list     { display: flex; flex-direction: column; }
.faq-full-item     { border-bottom: 1px solid var(--border); }
.faq-full-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-size: 1rem; font-weight: 600; color: var(--white);
  text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-body); transition: color var(--transition);
}
.faq-full-question:hover { color: var(--gold); }
.faq-full-toggle   { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.faq-full-answer   { display: none; padding-bottom: 22px; color: var(--white-dim); font-size: .9rem; line-height: 1.8; }
.faq-full-answer.open { display: block; }

/* ── Serve tags ──────────────────────────────────────────────────── */
.serve-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.serve-tag  {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(27,53,97,.12);
  border-radius: 999px; padding: 9px 18px;
  font-size: .83rem; font-weight: 600; color: var(--navy);
  transition: all var(--transition);
}
.serve-tag:hover { border-color: var(--gold); color: #1b5ea0; }
.serve-tag-icon  { font-size: 1rem; }

/* ── Checklist ───────────────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { font-size: .92rem; color: #5374a0; padding-left: 28px; position: relative; line-height: 1.6; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ── CTA sections ────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(160deg,var(--navy) 0%,var(--navy2) 100%); padding: 90px 28px; text-align: center; color: #fff; }
.cta-inner   { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(2rem,5vw,3.5rem); letter-spacing: .04em; margin: 12px 0 20px; }
.cta-inner p  { color: var(--white-dim); font-size: 1rem; line-height: 1.75; margin-bottom: 36px; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner   { background: var(--navy); padding: 56px 28px; text-align: center; color: #fff; border-top: 1px solid var(--border); }
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,3rem); letter-spacing: .04em; margin-bottom: 12px; }
.cta-banner p  { color: var(--white-dim); font-size: .95rem; margin-bottom: 28px; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Home location cards ─────────────────────────────────────────── */
.home-loc-card {
  display: block; background: #fff;
  border: 1px solid rgba(27,53,97,.12);
  border-radius: var(--radius-lg); padding: 28px 24px;
  text-decoration: none; color: var(--navy);
  transition: all var(--transition);
}
.home-loc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(27,53,97,.12); border-color: var(--gold); }
.home-loc-emoji { font-size: 2rem; margin-bottom: 12px; }
.home-loc-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.home-loc-addr   { font-size: .85rem; color: #5374a0; margin-bottom: 16px; line-height: 1.5; }
.home-loc-pills  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.home-loc-pill   { font-size: .8rem; color: #5374a0; display: flex; align-items: flex-start; gap: 8px; }
.home-loc-btn    { font-size: .83rem; font-weight: 700; color: var(--gold); }

/* ── About page ──────────────────────────────────────────────────── */
.about-story     { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story-text { font-size: .95rem; color: var(--white-dim); line-height: 1.8; }
.about-story-text h2 { font-family: var(--font-head); font-size: 2.6rem; color: #fff; margin-bottom: 20px; }
.about-story-text p  { margin-bottom: 16px; }
.about-section-title { font-family: var(--font-head); font-size: 2.4rem; letter-spacing: .03em; color: #fff; margin-bottom: 8px; }
.about-stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.about-stat .num  { font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 1; }
.about-stat .label { font-size: .8rem; color: var(--white-dim); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card  { background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; }
.value-icon  { font-size: 2.5rem; margin-bottom: 14px; }
.about-visual { border-radius: var(--radius-lg); overflow: hidden; }

/* ── Location pages ──────────────────────────────────────────────── */
.loc-hero       { background: linear-gradient(160deg,var(--navy) 0%,var(--navy2) 100%); padding: 72px 28px 64px; color: #fff; }
.loc-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 60px; align-items: start; }
.loc-icon       { font-size: 3rem; margin-bottom: 16px; }
.loc-info       { display: flex; flex-direction: column; gap: 8px; margin: 20px 0; }
.loc-info-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-detail-card { background: rgba(255,255,255,.06); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.loc-map-card   { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.loc-map-card iframe { width: 100%; height: 280px; display: block; border: 0; }
.loc-map-btn    { display: block; text-align: center; padding: 14px; background: rgba(90,163,211,.1); color: var(--gold); font-size: .85rem; font-weight: 600; border-top: 1px solid var(--border); }
.loc-row        { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding: 80px 28px; }
.loc-row-content h2 { font-family: var(--font-head); font-size: 2.4rem; color: var(--navy); margin-bottom: 16px; }
.loc-row-content p  { font-size: .92rem; color: #5374a0; line-height: 1.75; margin-bottom: 12px; }
.services-loc   { display: flex; flex-direction: column; gap: 10px; }
.hours-list     { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hours-list li  { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; background: #fff; border-radius: 8px; border: 1px solid rgba(27,53,97,.1); font-size: .88rem; }
.hours-list li .day  { color: #5374a0; font-weight: 500; }
.hours-list li .time { color: var(--navy); font-weight: 700; }
.hours-list li.highlight .time { color: var(--gold); }

/* ── Contact page ────────────────────────────────────────────────── */
.contact-strip { background: var(--navy); border-bottom: 1px solid var(--border); }
.contact-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; }
.cstrip-item { display: flex; align-items: center; gap: 12px; padding: 20px 32px; border-right: 1px solid var(--border); text-decoration: none; transition: background .15s; flex-shrink: 0; }
.cstrip-item:hover { background: rgba(255,255,255,.04); }
.cstrip-icon  { font-size: 1.4rem; }
.cstrip-label { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.cstrip-value { font-size: .92rem; font-weight: 600; color: #fff; display: block; }
.cstrip-sub   { font-size: .75rem; color: var(--white-dim); display: block; }
.contact-locations  { padding: 72px 28px; background: #f7f5f0; }
.contact-loc-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-loc-card   { background: #fff; border: 1px solid rgba(27,53,97,.12); border-radius: var(--radius-lg); padding: 28px; }
.contact-loc-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cloc-emoji  { font-size: 1.5rem; display: block; margin-bottom: 12px; }
.cloc-addr   { font-size: .88rem; color: #5374a0; line-height: 1.6; margin-bottom: 14px; }
.cloc-pills  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.cloc-pill   { font-size: .8rem; color: #5374a0; display: flex; align-items: center; gap: 8px; }
.cloc-btn    { display: inline-block; font-size: .83rem; font-weight: 700; color: var(--gold); }
.contact-form-section { padding: 72px 28px; }
.contact-form-wrap   { max-width: 620px; margin: 0 auto; }
.contact-form-box    { background: #fff; border: 1px solid rgba(27,53,97,.1); border-radius: var(--radius-lg); padding: 44px; }
.contact-form-header h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); margin-bottom: 8px; }
.contact-form-header p  { font-size: .88rem; color: #5374a0; margin-bottom: 28px; }
.form-divider { border: none; border-top: 1px solid rgba(27,53,97,.08); margin: 24px 0; }
.form-success { background: rgba(39,174,96,.1); border: 1px solid rgba(39,174,96,.3); border-radius: var(--radius); padding: 20px; text-align: center; color: #27ae60; }
.still-questions { text-align: center; padding: 48px 0 0; }
.form-group  { margin-bottom: 18px; }
.form-group label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #8a9abc; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(27,53,97,.15); border-radius: var(--radius);
  font-size: .9rem; font-family: var(--font-body); color: var(--navy);
  background: #fff; outline: none; transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── Walkin banner ───────────────────────────────────────────────── */
.walkin-banner { background: rgba(90,163,211,.1); border: 1px solid var(--border-gold); border-radius: var(--radius); padding: 16px 20px; font-size: .9rem; }

/* ── Breadcrumb ──────────────────────────────────────────────────── */
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.breadcrumb a { color: var(--gold); }

/* ── Bring section ───────────────────────────────────────────────── */
.bring-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.bring-callout {
  background: linear-gradient(160deg,var(--navy2),var(--navy3));
  border: 1px solid var(--border-gold); border-radius: var(--radius-lg);
  padding: 44px; text-align: center; position: relative;
}
.bring-callout::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--gold),transparent); border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
.bring-callout h3 { font-family: var(--font-head); font-size: 2.4rem; letter-spacing: .04em; color: var(--gold); margin-bottom: 16px; }
.bring-callout p  { font-size: .92rem; color: var(--white-dim); line-height: 1.75; margin-bottom: 16px; }

/* ── Float call button ───────────────────────────────────────────── */
.float-call {
  position: fixed; bottom: 90px; right: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; box-shadow: 0 4px 20px var(--goldglow);
  z-index: 8990; transition: transform .2s, box-shadow .2s;
}
.float-call:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(90,163,211,.65); }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: #0a1120; padding: 64px 28px 32px; color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer-logo-main { display: block; font-family: var(--font-head); font-size: 1.3rem; letter-spacing: .06em; color: #fff; margin-bottom: 4px; }
.footer-logo-sub  { display: block; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-tagline   { color: rgba(255,255,255,.42); line-height: 1.7; font-size: .83rem; }
.footer-brand p   { color: rgba(255,255,255,.42); line-height: 1.7; font-size: .83rem; }
.footer-heading   { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 16px; }
.footer-col h4    { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 16px; }
.footer-links     { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a   { color: rgba(255,255,255,.52); font-size: .83rem; transition: color .15s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .83rem; }
.footer-contact-icon, .footer-contact-item .icon { color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: rgba(255,255,255,.28); flex-wrap: wrap; gap: 8px;
}
.footer-geo { max-width: 1200px; margin: 14px auto 0; font-size: .65rem; color: rgba(255,255,255,.16); text-align: center; }

/* ── Utilities ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold, .gold { color: var(--gold) !important; }
.ic { color: var(--gold); }
.dark { color: var(--navy); }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────── */

/* Wide desktop — let content breathe */
@media (min-width: 1440px) {
  .container { max-width: 1360px; }
  .header-inner { max-width: 1360px; }
  .footer-grid { max-width: 1360px; }
  .footer-bottom, .footer-geo { max-width: 1360px; }
  .trust-bar-inner { max-width: 1600px; }
  .section-light, .section-white, .section-dark { padding: 100px 40px; }
}

/* Laptop / small desktop */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .loc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Tablet landscape / small laptop */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-header { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 52px 24px 44px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .loc-row { grid-template-columns: 1fr; gap: 32px; padding: 60px 28px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .bring-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-light, .section-white, .section-dark { padding: 72px 24px; }
  .cta-section { padding: 72px 24px; }
  .cta-banner { padding: 52px 24px; }
}

/* Tablet portrait */
@media (max-width: 700px) {
  .header-phone { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-loc-grid { grid-template-columns: 1fr; }
  .cta-buttons, .cta-banner-btns { flex-direction: column; align-items: center; }
  .cta-buttons .btn, .cta-banner-btns .btn { width: 100%; max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .section-light, .section-white, .section-dark { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .cta-banner { padding: 44px 20px; }
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  /* Contact strip stacks on mobile */
  .contact-strip-inner { flex-direction: column; }
  .cstrip-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .cstrip-item:last-child { border-bottom: none; }
  /* Location pages */
  .loc-row { padding: 48px 20px; }
  .contact-locations { padding: 52px 20px; }
  .contact-form-section { padding: 52px 20px; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Announcement bar — keep to 2 lines max */
  .announcement-bar { font-size: 0.7rem; padding: 7px 12px; line-height: 1.55; }
  /* Page hero */
  .page-hero { padding: 36px 16px 28px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 3rem); margin: 8px 0 12px; }
  /* Sections */
  .section-light, .section-white, .section-dark { padding: 52px 16px; }
  .cta-section { padding: 52px 16px; }
  .cta-banner { padding: 40px 16px; }
  .contact-locations { padding: 44px 16px; }
  .contact-form-section { padding: 44px 16px; }
  /* Hero location tiles — tighter on mobile */
  .hero-loc-grid { gap: 10px; margin-bottom: 24px; }
  .hero-loc-entry { padding: 12px 14px; }
  .hero-loc-name { font-size: 0.9rem; }
  .hero-loc-detail { font-size: 0.76rem; }
  .hero-loc-phone { font-size: 0.95rem; margin-top: 8px; }
  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  /* Footer */
  .site-footer { padding: 44px 16px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; height: 56px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-stat-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 12px 12px; font-size: .7rem; }
  .loc-row { padding: 40px 16px; }
  .footer-grid { gap: 22px; }
  .bring-callout { padding: 28px 20px; }
  .section-label { margin-bottom: 10px; }
  .cta-inner h2 { font-size: clamp(1.8rem, 7vw, 3rem); }
  .cta-banner h2 { font-size: clamp(1.6rem, 6vw, 2.6rem); }
}

/* Very small mobile */
@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-loc-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: repeat(3,1fr); }
  .trust-bar-inner { gap: 0; }
  .header-inner { gap: 12px; }
}
