/* ============================================================
   HB PRO PAINTING LLC — Global Stylesheet
   Warm & Local design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700;800&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg:          #FEF9F0;
  --color-bg-alt:      #F3E7CE;
  --color-surface:     #FFFFFF;
  --color-primary:     #C0392B;
  --color-primary-dark:#A5301F;
  --color-accent:      #EFA000;
  --color-accent-dark: #C97F00;
  --color-accent2:     #1A3A5C;
  --color-accent2-dark:#12293F;
  --color-text:        #2B2420;
  --color-muted:       #6B6055;
  --color-border:      #E7D9BE;

  --font-head: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --max-w:       1200px;
  --pad-desktop: 100px;
  --pad-mobile:  48px;

  --sh-sm: 0 1px 4px rgba(43,25,10,.08);
  --sh-md: 0 4px 18px rgba(43,25,10,.11);
  --sh-lg: 0 12px 38px rgba(43,25,10,.16);

  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   18px;
  --r-pill: 60px;

  --ease:     0.3s ease;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.75;
  overflow-x: hidden;
}

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.28; color: var(--color-accent2); }
h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem,2.2vw,1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { margin-bottom: 1rem; }
a[href^="tel"] { text-decoration: none; color: inherit; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: scale(1.03); }

.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); box-shadow: var(--sh-md); filter: brightness(1.02); }

.btn-secondary { background: transparent; color: var(--color-accent2); border-color: var(--color-accent2); }
.btn-secondary:hover { background: var(--color-accent2); color: #fff; box-shadow: var(--sh-md); }

.btn-white-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-white-outline:hover { background: #fff; color: var(--color-accent2); }

.btn-amber { background: var(--color-accent); color: var(--color-accent2); border-color: var(--color-accent); }
.btn-amber:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; }

.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}
.site-header.is-transparent { background: transparent; }
.site-header.is-solid {
  background: var(--color-bg);
  box-shadow: var(--sh-md);
  border-bottom: 3px solid var(--color-primary);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  gap: 12px;
  transition: padding var(--ease);
}
.is-solid .hdr-inner { padding: 10px 24px; }

.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--color-accent2);
  flex-shrink: 0;
}
.logo em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-top: 2px;
}
.is-transparent .logo { color: #fff; }
.is-transparent .logo em { color: var(--color-accent); }

.nav-desktop {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px;
}
@media (min-width: 940px) { .nav-desktop { display: flex; } }

.nav-desktop a {
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-accent2);
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active { background: rgba(192,57,43,.1); color: var(--color-primary); }
.is-transparent .nav-desktop a { color: #fff; }
.is-transparent .nav-desktop a:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Services dropdown — desktop */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 12px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-accent2);
  background: none; border: none; cursor: pointer;
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { background: rgba(192,57,43,.1); color: var(--color-primary); }
.is-transparent .nav-dropdown-toggle { color: #fff; }
.is-transparent .nav-dropdown-toggle:hover,
.is-transparent .nav-dropdown-toggle.active { background: rgba(255,255,255,.15); color: #fff; }

.nav-caret { font-size: .6rem; transition: transform var(--ease); }
.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 8px;
  min-width: 220px;
  display: flex; flex-direction: column; gap: 1px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-desktop .nav-dropdown-menu a {
  padding: 9px 12px;
  font-size: .84rem;
  color: var(--color-accent2);
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav-desktop .nav-dropdown-menu a:hover { background: rgba(192,57,43,.08); color: var(--color-primary); }

.hdr-phone {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .86rem;
  flex-shrink: 0;
  transition: all var(--ease);
}
.hdr-phone:hover { background: var(--color-primary-dark); transform: scale(1.03); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1010;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-accent2); border-radius: 2px;
  transition: all var(--ease);
}
.is-transparent .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1150px) { .hamburger { display: none; } }

/* MOBILE MENU */
.mob-menu {
  position: fixed; top: 0; right: -100%; width: min(360px,100vw);
  height: 100vh; background: var(--color-bg);
  z-index: 1005; overflow-y: auto;
  box-shadow: var(--sh-lg);
  padding: 88px 28px 40px;
  transition: right var(--ease);
}
.mob-menu.open { right: 0; }
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(20,15,10,.5);
  z-index: 1004;
  opacity: 0; pointer-events: none;
  transition: opacity var(--ease);
}
.mob-overlay.open { opacity: 1; pointer-events: all; }
.mob-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  color: var(--color-accent2);
  transition: color var(--ease);
}
.mob-menu a:hover { color: var(--color-primary); }

/* Services submenu — mobile */
.mob-submenu-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
  font-weight: 600; font-size: 1rem;
  color: var(--color-accent2);
  cursor: pointer;
}
.mob-submenu-toggle:hover { color: var(--color-primary); }
.mob-submenu.open .mob-submenu-toggle { color: var(--color-primary); }
.mob-submenu.open .nav-caret { transform: rotate(180deg); }
.mob-submenu-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.mob-submenu.open .mob-submenu-panel { max-height: 460px; }
.mob-submenu-panel a {
  padding: 11px 0 11px 16px;
  font-size: .92rem;
  border-bottom: 1px solid var(--color-border);
}

.mob-menu .mob-cta {
  margin-top: 24px;
  display: block; text-align: center;
  background: var(--color-primary); color: #fff;
  padding: 14px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 1.05rem;
  border: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #FFFDF8 0%, #FBF1DC 55%, #EFDFC2 100%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
}

.hero-bg {
  position: absolute; inset: -5% -5% -5% -5%; z-index: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(20,30,45,.55);
}

.hero-deco-quote {
  position: absolute; top: 30px; left: 24px;
  font-size: 300px; line-height: 1;
  color: var(--color-primary); opacity: .05;
  font-family: Georgia, serif; z-index: 2;
  pointer-events: none; user-select: none;
}
.hero-star {
  position: absolute; color: var(--color-accent); opacity: .4;
  font-size: 1.4rem; z-index: 2; pointer-events: none;
}
.hero-star.tl { top: 130px; left: 60px; }
.hero-star.tr { top: 110px; right: 80px; }
.hero-star.bl { bottom: 170px; left: 50px; }
.hero-star.br { bottom: 150px; right: 70px; }

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  color: #fff;
  padding: 130px 20px 110px;
  width: 100%;
}
.hero-content .container { max-width: 840px; }

.hero-badge {
  display: inline-block;
  background: var(--color-primary); color: #fff;
  padding: 6px 22px; border-radius: var(--r-pill);
  font-size: .74rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .5s var(--ease-out) .3s forwards;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp .7s var(--ease-out) .6s forwards;
}
.hero-line {
  width: 120px; height: 3px;
  background: var(--color-accent);
  margin: 0 auto 22px;
  transform-origin: left;
  transform: scaleX(0);
  animation: drawLine .9s var(--ease-out) .9s forwards;
}
.hero-content p {
  font-size: clamp(.95rem,2vw,1.15rem);
  color: rgba(255,255,255,.9);
  max-width: 600px; margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn .6s ease 1.1s forwards;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeIn .6s ease 1.4s forwards;
}
.hero-trust {
  margin-top: 28px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.78);
  opacity: 0; animation: fadeIn .6s ease 1.7s forwards;
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 4;
  line-height: 0;
}
.hero-wave svg { width: 100%; display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawLine {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes ring {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--color-accent2); color: #fff; padding: 20px 0; }
.trust-bar-inner {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; white-space: nowrap; }
.trust-icon { color: var(--color-accent); font-size: 1.1rem; }

.trust-badges {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin: 32px 0;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1.5px solid var(--color-border);
  padding: 8px 18px; border-radius: var(--r-pill);
  font-size: .85rem; font-weight: 700; color: var(--color-accent2);
}
.badge-pill span { color: var(--color-accent); font-size: 1rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--pad-mobile) 0; position: relative; }
@media (min-width: 768px) { .section { padding: var(--pad-desktop) 0; } }

.section-cream { background: var(--color-bg); }
.section-alt   { background: var(--color-bg-alt); }
.section-navy  { background: var(--color-accent2); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p  { color: rgba(255,255,255,.82); }
.section-dark  { background: #0f2338; color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-hdr { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block; color: var(--color-primary);
  font-size: .75rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
}
.section-navy .section-label { color: var(--color-accent); }
.section-title { margin-bottom: 14px; }
.section-sub { max-width: 600px; margin: 0 auto; color: var(--color-muted); font-size: 1rem; }
.section-navy .section-sub { color: rgba(255,255,255,.8); }
.amber-bar {
  width: 56px; height: 3px; background: var(--color-accent);
  border-radius: 2px; margin: 14px auto 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 480px) { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--color-border);
  border-left: 4px solid transparent;
  transition: all var(--ease);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-left-color: var(--color-accent);
  background: #FFFDF6;
}
.svc-card:hover h3 { color: var(--color-primary); }

.svc-card-img { height: 210px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--color-accent2), #2c5a86); }
.svc-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }

.svc-card-body { padding: 22px; }
.svc-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; transition: color var(--ease); }
.svc-card-body p  { color: var(--color-muted); font-size: .93rem; margin-bottom: 14px; }
.svc-card-link {
  color: var(--color-primary); font-weight: 700; font-size: .88rem;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--ease);
}
.svc-card:hover .svc-card-link { gap: 8px; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 28px;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem; font-weight: 900;
  color: var(--color-primary); display: block; line-height: 1;
}
.section-navy .stat-num { color: var(--color-accent); }
.stat-lbl { color: var(--color-muted); font-size: .9rem; margin-top: 6px; }
.section-navy .stat-lbl { color: rgba(255,255,255,.75); }

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .feat-grid { grid-template-columns: repeat(3,1fr); } }

.feat-card {
  text-align: center; padding: 32px 22px;
  background: var(--color-surface); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm); border: 1px solid var(--color-border);
  transition: all var(--ease);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--color-accent); }
.feat-icon {
  width: 64px; height: 64px;
  background: rgba(192,57,43,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.8rem;
}
.feat-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feat-card p  { color: var(--color-muted); font-size: .93rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .testi-grid.testi-grid-wide { grid-template-columns: repeat(3,1fr); } }

.testi-card {
  background: var(--color-surface); padding: 28px 26px 26px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transform: rotate(-1deg);
  transition: transform var(--ease), box-shadow var(--ease);
}
.testi-card.reveal.in { transform: rotate(0deg); }
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.testi-quote-mark {
  color: var(--color-accent); font-family: Georgia, serif;
  font-size: 2.4rem; line-height: 1; display: block; margin-bottom: 4px;
  transition: transform var(--ease);
}
.testi-card:hover .testi-quote-mark { transform: scale(1.25); }
.testi-stars { color: var(--color-accent); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-text  { font-style: italic; font-size: .95rem; color: var(--color-text); line-height: 1.7; margin-bottom: 14px; }
.testi-name  { font-weight: 700; color: var(--color-accent2); font-size: .95rem; display: block; }
.testi-city  { font-size: .83rem; color: var(--color-muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--color-primary);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/cta-bg.jpg') center/cover no-repeat;
  opacity: .1;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-band-inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; text-align: left; }
.cta-band-inner h2 { text-align: left; }
.cta-band-inner p  { text-align: left; margin: 0; margin-left: 0; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 700px) {
  .cta-band-inner, .cta-band-inner h2, .cta-band-inner p { text-align: center; }
  .cta-band-inner { justify-content: center; }
  .cta-band-btns { justify-content: center; width: 100%; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--color-accent2) 0%, #2c5a86 100%);
  padding: 148px 0 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../assets/img/hero.jpg') center/cover no-repeat;
  opacity: .14;
}
.page-hero.is-root::before { background-image: url('assets/img/hero.jpg'); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.86); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.breadcrumbs {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 7px; font-size: .82rem; color: rgba(255,255,255,.62);
  margin-bottom: 18px; justify-content: center;
}
.breadcrumbs a { color: rgba(255,255,255,.88); transition: color var(--ease); }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .sep { opacity: .5; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { counter-reset: steps; }
.step { display: flex; gap: 22px; margin-bottom: 28px; align-items: flex-start; }
.step-num {
  counter-increment: steps;
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--color-primary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1.1rem;
}
.step-body h3 { font-size: 1.05rem; margin-bottom: 5px; }
.step-body p  { color: var(--color-muted); font-size: .93rem; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border); border-radius: var(--r-md);
  margin-bottom: 10px; overflow: hidden; background: var(--color-surface);
}
.faq-q {
  width: 100%; padding: 18px 22px;
  background: none; border: none; text-align: left;
  font-family: var(--font-head); font-size: .98rem; font-weight: 700;
  color: var(--color-accent2); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background var(--ease);
}
.faq-q:hover { background: rgba(192,57,43,.04); }
.faq-ico { color: var(--color-primary); font-size: 1.4rem; flex-shrink: 0; transition: transform var(--ease); }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 18px; }
.faq-a p { color: var(--color-muted); margin: 0; font-size: .95rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--color-accent2); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 2px solid var(--color-border); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .95rem; color: var(--color-text);
  background: var(--color-surface); transition: border-color var(--ease); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--color-accent); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.mini-form {
  background: var(--color-surface); padding: 30px; border-radius: var(--r-lg);
  box-shadow: var(--sh-md); border: 1px solid var(--color-border);
}
.mini-form h3 { font-size: 1.1rem; margin-bottom: 18px; }

.form-note { font-size: .82rem; color: var(--color-muted); margin-top: 12px; text-align: center; }

/* Spinner for submit button */
.btn .spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.5);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.btn.is-loading .spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   INFO BOX / SIDEBAR
   ============================================================ */
.info-box {
  background: var(--color-surface); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm); border: 1px solid var(--color-border);
  margin-bottom: 20px;
}
.info-box h3 { font-size: 1rem; color: var(--color-primary); margin-bottom: 16px; font-weight: 700; }
.info-row { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; font-size: .9rem; }
.info-row:last-child { margin-bottom: 0; }
.info-ico { color: var(--color-accent); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.info-lbl { font-weight: 700; color: var(--color-accent2); display: block; }
.info-val { color: var(--color-muted); font-size: .88rem; }
.info-val a { color: var(--color-muted); transition: color var(--ease); }
.info-val a:hover { color: var(--color-primary); }

/* ============================================================
   TWO COLUMN LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col-60 { grid-template-columns: 3fr 2fr; }
  .two-col-40 { grid-template-columns: 2fr 3fr; }
}
.two-col.two-col-top { align-items: start; }

.img-frame {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg);
  background: linear-gradient(135deg, var(--color-accent2), #2c5a86);
  min-height: 280px;
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

.list-check { padding-left: 0; margin-bottom: 1rem; }
.list-check li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  color: var(--color-text); line-height: 1.6;
}
.list-check li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: #fff; background: var(--color-primary);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: .72rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
@media (min-width: 480px) { .areas-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(4,1fr); } }

.area-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  padding: 9px 14px; border-radius: var(--r-md);
  font-size: .88rem; font-weight: 600; color: var(--color-accent2);
  transition: all var(--ease);
}
.area-chip:hover { border-color: var(--color-primary); color: var(--color-primary); }
.area-dot { width: 7px; height: 7px; background: var(--color-accent); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0d2138; color: rgba(255,255,255,.78); padding: 80px 0 0; }
.ftr-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
@media (min-width: 768px)  { .ftr-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .ftr-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.ftr-brand .logo { color: #fff; margin-bottom: 10px; display: inline-block; }
.ftr-brand .logo em { color: var(--color-accent); }
.ftr-brand p { color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.75; max-width: 280px; }

.ftr-col h4 {
  color: var(--color-accent); font-family: var(--font-body);
  font-size: .75rem; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 18px;
}
.ftr-col li { margin-bottom: 9px; }
.ftr-col a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--ease); }
.ftr-col a:hover { color: var(--color-accent); }

.ftr-contact-row { display: flex; gap: 9px; margin-bottom: 11px; font-size: .88rem; align-items: flex-start; }
.ftr-ico { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.ftr-contact-row a { color: rgba(255,255,255,.65); transition: color var(--ease); }
.ftr-contact-row a:hover { color: var(--color-accent); }

.ftr-hours { font-size: .85rem; color: rgba(255,255,255,.58); line-height: 1.85; }

.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; flex-direction: column; gap: 7px;
  align-items: center; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.45);
}
@media (min-width: 768px) { .ftr-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.ftr-review-link { color: var(--color-accent); font-weight: 700; transition: color var(--ease); display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; }
.ftr-review-link:hover { color: var(--color-accent-dark); }

/* ============================================================
   REVEAL (IntersectionObserver)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px) scale(.98); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed; bottom: 22px; right: 22px; z-index: 999;
  background: var(--color-primary); color: #fff;
  padding: 13px 20px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .88rem;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 8px;
  animation: ring 3s infinite;
  transition: all var(--ease);
}
.float-cta:hover { background: var(--color-primary-dark); transform: scale(1.05); animation: none; }

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider { line-height: 0; margin-top: -1px; }
.wave-divider svg { width: 100%; display: block; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-amber  { color: var(--color-accent); }
.text-primary{ color: var(--color-primary); }
.text-muted  { color: var(--color-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.fw-bold { font-weight: 700; }
.flex-wrap-gap { display: flex; gap: 12px; flex-wrap: wrap; }
.flex-center { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hr-divider { height: 1px; background: var(--color-border); margin: 32px 0; }
.star-yellow { color: var(--color-accent); }

.map-ph {
  width: 100%; height: 380px;
  background: linear-gradient(135deg, #EDE3CC, #D9CBA9);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--color-muted); font-size: 1rem;
  overflow: hidden; position: relative;
}
.map-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.map-ph-content { position: relative; z-index: 1; background: rgba(255,253,246,.88); padding: 22px 30px; border-radius: var(--r-md); text-align: center; }
.map-ph-icon { font-size: 2.6rem; margin-bottom: 6px; }
