/* ═══════════════════════════════════════════════════════════
   Puget Sound Moving — Global CSS
   Navigation, footer, buttons, shared utilities.
   CSS variables are injected by PHP (psm_customizer_css).
═══════════════════════════════════════════════════════════ */

/* ─── BASE RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

/* ─── TYPOGRAPHY SCALE ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { line-height: 1.15; }
p { line-height: 1.7; }

/* ─── ACCESSIBILITY ───────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ─── SHARED LAYOUT ───────────────────────────────────────── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 12px 28px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 12px 28px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 1px;
  text-transform: uppercase; border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy); color: var(--white); padding: 17px 44px;
  font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 3px;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-dark:hover { background: #0A1836; transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.btn-outline-dark {
  background: transparent; color: var(--navy); padding: 15px 40px;
  font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 3px;
  border: 2.5px solid var(--navy); cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.25s, color 0.25s, transform 0.25s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--gold); transform: translateY(-3px); }

/* ─── SECTION TYPOGRAPHY ──────────────────────────────────── */
.section-eyebrow {
  font-family: 'Bebas Neue', sans-serif; font-size: 13px;
  letter-spacing: 6px; color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); display: block; }
.section-eyebrow.center  { justify-content: center; }
.section-eyebrow.center::before { display: none; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  letter-spacing: 1px; line-height: 0.95; color: var(--navy);
}
.section-title .gold  { color: var(--gold); }
.section-title.white  { color: var(--white); }
.section-title.center { text-align: center; }

/* ─── BREADCRUMB BAR ──────────────────────────────────────── */
.breadcrumb-bar { background: rgba(13,31,74,0.95); padding: 10px 5%; }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 10px; font-size: 12px; flex-wrap: wrap; }
.breadcrumb-inner a   { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep       { color: rgba(255,255,255,0.2); }
.breadcrumb-current   { color: var(--gold); font-weight: 600; }

/* ─── BANNER MARQUEE ──────────────────────────────────────── */
.banner-divider {
  overflow: hidden; background: var(--gold); padding: 13px 0;
  position: relative; transform: rotate(-1.2deg) scaleX(1.05);
  margin: -8px 0; z-index: 10; box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}
.banner-track { display: flex; white-space: nowrap; animation: psm-marquee 22s linear infinite; }
.banner-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 4px;
  color: var(--navy); padding: 0 24px; display: flex; align-items: center; gap: 18px;
}
.banner-item::after { content: '⬥'; font-size: 11px; opacity: 0.5; }
@keyframes psm-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .banner-track { animation: none; }
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,31,74,0.97); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  transition: height 0.3s ease, border-width 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px; max-width: 1440px; margin: 0 auto;
  transition: height 0.3s ease;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--white); }
.nav-logo-text .logo-sub  { font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 4px; color: var(--gold); }

/* Primary menu */
.nav-menu-wrap { display: flex; align-items: center; gap: 32px; }
.nav-menu-primary { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu-primary > li > a {
  text-decoration: none; color: rgba(255,255,255,0.8); font-size: 14px;
  font-weight: 500; letter-spacing: 0.5px; padding: 8px 10px;
  transition: color 0.2s; display: block; white-space: nowrap;
}
.nav-menu-primary > li > a:hover,
.nav-menu-primary > li.current-menu-item > a { color: var(--gold-light); }

.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--gold-light); letter-spacing: 2px; text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--white); }

/* Mobile toggle — handled by JS + mobile.css */
.nav-toggle { display: none; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #07112A; color: rgba(255,255,255,0.6);
  padding: 64px 5% 0; position: relative;
}
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 52px;
}
.footer-logo-name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--white); margin-bottom: 4px; }
.footer-logo-tag  { font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.4); max-width: 270px; margin-bottom: 20px; }
.footer-contact-line { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-contact-line a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact-line a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.35); transition: border-color 0.25s, color 0.25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 3px;
  color: var(--white); margin-bottom: 20px; padding-bottom: 10px; position: relative;
}
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 22px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-badges { display: flex; gap: 16px; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 14px; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── QUOTE FORM (shared across templates) ────────────────── */
.quote-card {
  background: var(--white); padding: 32px 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35); position: relative;
}
.quote-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
@media (prefers-reduced-motion: no-preference) {
  .quote-card { animation: psm-float 4s ease-in-out infinite; }
}
@keyframes psm-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.quote-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--navy); margin-bottom: 4px; }
.quote-card-sub   { font-size: 13px; color: var(--text-mid); margin-bottom: 20px; }
.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #E5E3DC;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s; background: var(--off-white);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-submit {
  width: 100%; padding: 15px; background: var(--gold); color: var(--navy);
  font-family: 'Bebas Neue', sans-serif; font-size: 19px; letter-spacing: 3px;
  border: none; cursor: pointer; margin-top: 6px;
  transition: background 0.2s, color 0.2s;
}
.quote-submit:hover { background: var(--gold-light); color: var(--navy); }
.quote-submit span { position: relative; }
.quote-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--gold); padding: 88px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-bg-text {
  position: absolute; font-family: 'Bebas Neue', sans-serif; font-size: 400px;
  color: rgba(255,255,255,0.06); top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; white-space: nowrap; line-height: 1;
}
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 80px); color: var(--navy); letter-spacing: 2px; line-height: 0.95; margin-bottom: 18px; position: relative; z-index: 1; }
.cta-sub   { font-size: 17px; color: rgba(13,31,74,0.65); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── REVEAL ANIMATIONS ───────────────────────────────────── */
/* Elements start fully visible — JS optionally adds .pre-animate */
.reveal, .reveal-left, .reveal-right {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.pre-animate       { opacity: 0; transform: translateY(24px); }
.reveal-left.pre-animate  { opacity: 0; transform: translateX(-30px); }
.reveal-right.pre-animate { opacity: 0; transform: translateX(30px); }
.reveal.pre-animate.visible,
.reveal-left.pre-animate.visible,
.reveal-right.pre-animate.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { transition: none !important; }
}

/* ─── FAQ ACCORDION — works without JS via <details> ─────── */
.faq-v8-item {
  border-bottom: 1px solid rgba(201,148,42,0.15);
}
.faq-v8-item:last-child { border-bottom: none; }
details.faq-v8-item > summary {
  list-style: none; display: flex; justify-content: space-between;
  align-items: center; padding: 22px 0; cursor: pointer;
  font-weight: 600; font-size: 16px; color: rgba(255,255,255,0.85);
  gap: 20px; user-select: none;
  transition: color 0.2s;
}
details.faq-v8-item > summary::-webkit-details-marker { display: none; }
details.faq-v8-item > summary::after {
  content: '▾'; font-size: 18px; color: var(--gold);
  flex-shrink: 0; transition: transform 0.3s; display: block;
}
details.faq-v8-item[open] > summary::after { transform: rotate(180deg); }
details.faq-v8-item[open] > summary { color: var(--gold-light); }
.faq-v8-a-inner { padding: 0 0 22px; font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.8; }

/* FAQ on light background */
.faq-light details.faq-v8-item { border-bottom-color: #E5E3DA; }
.faq-light details.faq-v8-item > summary { color: var(--text-dark); }
.faq-light details.faq-v8-item[open] > summary { color: var(--navy); }
.faq-light .faq-v8-a-inner { color: var(--text-mid); }

/* ─── STATS STRIP ─────────────────────────────────────────── */
.stats-strip { background: var(--navy); }
.stats-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-block { padding: 36px 24px; border-left: 1px solid rgba(255,255,255,0.07); }
.stat-block:first-child { border-left: none; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--gold-light); line-height: 1; letter-spacing: -1px; }
.stat-unit   { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--gold); }
.stat-label  { font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 2px; margin-top: 6px; }

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust-bar { background: var(--off-white); border-bottom: 2px solid #E5E3DA; }
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.trust-block { padding: 28px 20px; border-left: 1px solid #E5E3DA; text-align: center; }
.trust-block:first-child { border-left: none; }
.trust-block-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--navy); line-height: 1; }
.trust-block-num span { color: var(--gold); }
.trust-block-label { font-size: 12px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

/* ─── RESPONSIVE GLOBALS ──────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-strip-inner, .trust-bar-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn-dark,
  .cta-buttons .btn-outline-dark { clip-path: none; width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .stats-strip-inner { grid-template-columns: 1fr; }
}

/* ══ FOOTER LOCATIONS ROW ═══════════════════════════════════
   5 location cards in a single clean row, same background.
═══════════════════════════════════════════════════════════ */
.footer-locations {
  max-width: 1280px; margin: 0 auto;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 52px;
}
.footer-locations-heading {
  font-family: 'Bebas Neue', sans-serif; font-size: 11px; letter-spacing: 5px;
  color: rgba(255,255,255,.25); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.footer-locations-heading::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.07);
}

/* One row, 5 equal columns */
.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.footer-location-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid rgba(201,148,42,.25);
  padding: 20px 18px;
  display: block;
  transition: background .25s, border-top-color .25s;
}
.footer-location-card:hover {
  background: rgba(201,148,42,.06);
  border-top-color: var(--gold);
}
/* City name is a link — style it as the card heading */
.footer-loc-link {
  text-decoration: none; display: block; margin-bottom: 5px;
}
.footer-loc-city {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: 1.5px;
  color: var(--white); line-height: 1.1;
  transition: color .2s;
}
.footer-loc-link:hover .footer-loc-city,
.footer-location-card:hover .footer-loc-city { color: var(--gold-light); }
.footer-loc-biz {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(201,148,42,.55); margin-bottom: 12px;
}
.footer-loc-detail {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.38); line-height: 1.55;
  margin-bottom: 7px;
}
.footer-loc-detail:last-child { margin-bottom: 0; }
.footer-loc-detail .psm-icon { flex-shrink: 0; margin-top: 1px; opacity: .55; }
.footer-loc-detail a {
  color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s;
}
.footer-loc-detail a:hover { color: var(--gold); }
.footer-loc-maps {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-loc-maps a {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: rgba(201,148,42,.5); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.footer-loc-maps a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1200px) {
  .footer-locations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .footer-locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-location-card  { padding: 16px 14px; }
}
@media (max-width: 420px) {
  .footer-locations-grid { grid-template-columns: 1fr; }
}

/* ══ CONTACT PAGE ════════════════════════════════════════ */
.contact-offices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: #D8D5CC; margin-bottom: 0;
}
.contact-office-card {
  background: var(--white); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  border-top: 3px solid transparent;
  transition: border-top-color .25s, background .25s;
}
.contact-office-card:hover { border-top-color: var(--gold); background: #FAFAF8; }

.contact-office-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-office-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: -1px;
  color: rgba(13,31,74,.1); line-height: 1; flex-shrink: 0; margin-top: -4px;
}
.contact-office-city {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px;
  color: var(--navy); line-height: 1; margin-bottom: 4px;
}
.contact-office-biz { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

.contact-office-details { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 24px; }
.contact-detail-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-mid); line-height: 1.55; text-decoration: none;
}
.contact-detail-row .psm-icon { flex-shrink: 0; margin-top: 1px; }
.contact-phone-link { color: var(--text-dark); font-weight: 600; transition: color .2s; }
.contact-phone-link:hover { color: var(--gold); }

.contact-office-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--gray-bg); }
.contact-call-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--navy); color: var(--gold);
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 2px;
  padding: 9px 18px; text-decoration: none; transition: background .2s;
}
.contact-call-btn:hover { background: var(--navy-mid); }
.contact-maps-link {
  font-size: 12px; font-weight: 600; color: var(--text-light);
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color .2s;
}
.contact-maps-link:hover { color: var(--gold); }

.contact-bottom-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start;
}

/* Responsive */
@media (max-width: 1100px) {
  .contact-offices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .contact-bottom-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .contact-offices-grid { grid-template-columns: 1fr; }
}

/* ══ REVIEWS / TESTIMONIALS PAGE ════════════════════════ */
.reviews-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reviews-video-card {
  display: flex; flex-direction: column; gap: 0;
}
/* 16:9 responsive video wrapper */
.reviews-video-wrap {
  position: relative; padding-top: 56.25%;
  background: var(--navy); overflow: hidden;
}
.reviews-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; display: block;
}
.reviews-video-caption {
  background: var(--navy); padding: 14px 16px;
  border-top: 2px solid var(--gold);
}
.reviews-video-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 1.5px; color: var(--white); line-height: 1.1;
}
.reviews-video-team {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(201,148,42,.6); margin-top: 3px;
}

/* Responsive */
@media (max-width: 1000px) {
  .reviews-video-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 580px) {
  .reviews-video-grid { grid-template-columns: 1fr; gap: 20px; }
}
