/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* ── COLORS ── */
:root {
  --navy:      #000055;
  --navy-dark: #00003a;
  --navy-mid:  #000044;
  --slate:     #6B6B97;
  --silver:    #D2D2D2;
  --red:       #8B1A1A; /* Fibrenew uses dark red for certain accents */
  --light-bg:  #f5f5f5;
  --border:    #e0e0e0;
  --text:      #333;
  --mid:       #666;
  --link:      #000055;
}

a { color: var(--navy); }
a:hover { color: var(--slate); }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo-tagline {
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
  margin-top: 2px;
}
.logo-photo {
  width: 120px;
  height: 90px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
/* ── MAIN NAV ── */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--navy); background: rgba(0,0,85,.07); }
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a::after { content: ' ▾'; font-size: 11px; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,.12); min-width: 220px; z-index: 300;
  border-radius: 3px; overflow: hidden;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 18px; font-size: 14px; font-weight: 400;
  color: #333; border-bottom: 1px solid #f0f0f0;
}
.dropdown a:hover { background: var(--light-bg); color: var(--navy); }

.nav-icons { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.nav-icons button {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: #555; padding: 4px;
}

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; }
.mobile-nav-panel {
  display: none; background: #fff;
  border-top: 2px solid var(--border);
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel a {
  display: block; padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px; font-weight: 600; color: #333; text-decoration: none;
}
.mobile-nav-panel a:hover { color: var(--navy); background: var(--light-bg); }

/* ════════════════════════════════════════
   OWNER STRIP  (dark band with photo)
════════════════════════════════════════ */
.owner-strip {
  background: #1a1a2e;
  display: flex;
  align-items: stretch;
}
.owner-strip-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.owner-photo {
  width: 120px;
  min-height: 90px;
  object-fit: cover;
  flex-shrink: 0;
  /* placeholder gradient */
  background: linear-gradient(135deg, #2a2a5a, #000055);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 36px;
}
.owner-photo img { width: 120px; min-height: 90px; object-fit: cover; }
.owner-info {
  padding: 14px 24px;
  color: white;
}
.owner-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 600; color: white; margin-bottom: 4px;
}
.owner-info p { font-size: 14px; color: rgba(255,255,255,.75); }
.owner-strip-right {
  background: #000055;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 80px;
}
.brand-circle {
  width: 70px; height: 70px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700; color: white;
}

/* ════════════════════════════════════════
   ESTIMATE BAR  (dark red / maroon band)
════════════════════════════════════════ */
.estimate-bar {
  background: #6b1414;
  display: flex;
  align-items: center;
  padding: 10px 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.estimate-bar strong {
  color: white;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.estimate-ways { display: flex; gap: 20px; flex-wrap: wrap; }
.estimate-way {
  display: flex; align-items: center; gap: 8px;
  color: white; font-size: 14px; font-weight: 600; text-decoration: none;
}
.estimate-way:hover { color: var(--silver); }
.est-num {
  width: 24px; height: 24px; background: #2a7a2a;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700;
  color: white; flex-shrink: 0;
}

/* ════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #00003a 0%, #000055 100%);
  padding: 48px 24px;
  text-align: center;
  color: white;
}
.page-banner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px; font-weight: 700; letter-spacing: 1px;
  color: white; margin-bottom: 8px;
}
.page-banner p { color: rgba(255,255,255,.7); font-size: 17px; }

/* ════════════════════════════════════════
   HOMEPAGE HERO SLIDESHOW AREA
════════════════════════════════════════ */
.hero-slides {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #111;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 40px 56px;
}
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity .5s;
}
.slide-1-bg { background: linear-gradient(120deg,rgba(0,0,60,.7) 0%,rgba(0,0,85,.5) 100%), repeating-linear-gradient(135deg,#111 0,#111 2px,#1a1a3a 2px,#1a1a3a 40px); }
.slide-2-bg { background: linear-gradient(120deg,rgba(0,0,40,.8) 0%,rgba(0,0,70,.6) 100%), repeating-linear-gradient(45deg,#0a0a2a 0,#0a0a2a 2px,#111 2px,#111 40px); }
.slide-3-bg { background: linear-gradient(120deg,rgba(0,0,55,.75) 0%,rgba(0,0,80,.55) 100%), repeating-linear-gradient(90deg,#0d0d30 0,#0d0d30 1px,#111 1px,#111 60px); }
.slide-caption {
  position: relative; z-index: 2;
  background: rgba(0,0,0,.55); padding: 14px 24px; border-radius: 4px;
}
.slide-caption span {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 600; color: white; letter-spacing: .5px;
}
.slide-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; border: none;
  transition: background .2s;
}
.slide-dot.active { background: white; }

/* ════════════════════════════════════════
   SERVICES SECTION (homepage widgets)
════════════════════════════════════════ */
.services-section {
  max-width: 1100px; margin: 0 auto; padding: 48px 20px;
}
.services-section > h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 32px;
  text-align: center;
}
.services-intro-video {
  text-align: center; margin-bottom: 40px;
}
.services-intro-video h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px; color: #333; margin-bottom: 16px;
}
.video-placeholder {
  max-width: 700px; margin: 0 auto;
  background: #1a1a2e;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; cursor: pointer; position: relative; overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #00003a, #000055);
  opacity: .8;
}
.play-btn {
  position: relative; z-index: 2;
  width: 64px; height: 64px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--navy);
}

.widgets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
}
.widget-item {
  display: flex; gap: 0; border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.widget-item:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--border); }
.widget-item:nth-child(even) { padding-left: 24px; }
.widget-img {
  width: 130px; height: 80px; flex-shrink: 0;
  border-radius: 3px; overflow: hidden; margin-right: 14px;
}
.widget-img-placeholder {
  width: 130px; height: 80px; flex-shrink: 0;
  border-radius: 3px; margin-right: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.widget-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 600; color: #333; margin-bottom: 6px;
}
.widget-text h2 a { color: #333; text-decoration: none; }
.widget-text h2 a:hover { color: var(--navy); }
.widget-text p { font-size: 13px; color: var(--mid); line-height: 1.5; margin-bottom: 6px; }
.widget-text p a { color: var(--mid); text-decoration: none; }
.widget-text .learn-more-link {
  font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none;
  display: inline-block; margin-top: 2px;
}
.widget-text .learn-more-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   TESTIMONIAL STRIP (homepage)
════════════════════════════════════════ */
.testimonial-strip {
  background: var(--light-bg);
  padding: 32px 20px;
  text-align: center;
}
.testimonial-strip-inner { max-width: 800px; margin: 0 auto; }
.testimonial-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 600; color: #333; margin-bottom: 12px;
}
.star-row { color: #e6a817; font-size: 28px; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-quote { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 10px; font-style: italic; }
.testimonial-author { font-size: 14px; font-weight: 700; color: #333; }
.read-more-link { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
.read-more-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   SPLIT REASONS (homepage)
════════════════════════════════════════ */
.reasons-section { max-width: 1100px; margin: 0 auto; padding: 0 20px 56px; }
.reason-split {
  display: flex; gap: 0; margin-bottom: 0;
  border-top: 1px solid var(--border);
}
.reason-copy {
  flex: 1; padding: 40px 48px 40px 0;
}
.reason-copy h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 600; color: #333; margin-bottom: 12px;
}
.reason-copy h3 a { color: #333; text-decoration: none; }
.reason-copy h3 a:hover { color: var(--navy); }
.reason-copy p { font-size: 14px; color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.reason-copy p a { color: var(--navy); }
.reason-copy .learn-more-link { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; }
.reason-img {
  width: 340px; flex-shrink: 0;
  min-height: 220px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: rgba(255,255,255,.2);
  cursor: pointer;
}

/* ════════════════════════════════════════
   LOCATION SECTION
════════════════════════════════════════ */
.location-section {
  background: var(--light-bg);
  padding: 48px 20px;
}
.location-inner { max-width: 1100px; margin: 0 auto; }
.location-inner > p { font-size: 14px; color: var(--mid); margin-bottom: 20px; }
.location-inner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 600; color: #333;
  text-transform: uppercase; letter-spacing: .04em; margin: 24px 0 12px;
}
.cities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.cities-grid ul { list-style: none; }
.cities-grid li { font-size: 13px; color: #555; padding: 3px 0; }
.zips-grid {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px;
}
.zip-tag {
  font-size: 12px; background: white; border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 3px; color: #555;
}
.map-placeholder {
  width: 100%; height: 280px; margin-top: 24px;
  background: linear-gradient(135deg, #c8d6e5, #a8c0d8);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: #6a8aaa; font-size: 14px; font-weight: 600; gap: 8px; border: 1px solid #b0c8dc;
}

/* ════════════════════════════════════════
   SERVICES PAGE — service detail layout
════════════════════════════════════════ */
.service-detail { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.service-detail h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px; font-weight: 700; color: #333; margin-bottom: 8px;
}
.service-detail .subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 24px;
}
.service-layout { display: flex; gap: 40px; margin-bottom: 40px; }
.service-video {
  width: 320px; flex-shrink: 0;
  background: #1a1a2e;
  aspect-ratio: 9/16;
  max-height: 280px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; position: relative; cursor: pointer; overflow: hidden;
}
.service-video::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,#00003a,#000055); opacity: .8;
}
.service-video .play-btn { position: relative; z-index: 2; }
.service-copy { flex: 1; }
.service-copy p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.service-copy strong { color: #333; }
.service-copy a { color: var(--navy); }

/* Before/After gallery */
.ba-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.ba-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img {
  aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.ba-img.before-img { background: linear-gradient(135deg,#555,#888); color: rgba(255,255,255,.5); }
.ba-img.after-img  { background: linear-gradient(135deg,#2a5a2a,#3a8a3a); color: rgba(255,255,255,.5); }
.ba-label {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0,0,0,.7); color: white;
  font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 2px;
  text-transform: uppercase; letter-spacing: .04em;
}
.ba-title {
  padding: 12px 14px;
  font-size: 14px; font-weight: 600; color: #333; border-top: 1px solid var(--border);
}
.load-more-btn {
  display: block; margin: 32px auto 0;
  background: none; border: 2px solid var(--navy); color: var(--navy);
  padding: 10px 32px; font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; border-radius: 3px;
}
.load-more-btn:hover { background: var(--navy); color: white; }

/* Reviews on service page */
.service-review-strip {
  background: var(--light-bg); padding: 24px 28px; border-radius: 4px; margin-top: 32px;
}
.service-review-strip h2 { font-family: 'Oswald'; font-size: 20px; color: #333; margin-bottom: 8px; }

/* ════════════════════════════════════════
   REVIEWS PAGE
════════════════════════════════════════ */
.reviews-page { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.reviews-page > p { font-size: 14px; color: var(--mid); margin-bottom: 6px; }
.reviews-page > p + p { margin-bottom: 24px; }

.submit-review-box {
  text-align: center; padding: 24px; margin-bottom: 32px;
}
.submit-review-box h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
  text-transform: uppercase;
}
.submit-review-box p { font-size: 14px; color: #555; }
.submit-review-box a { color: var(--navy); font-weight: 700; }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 4px;
  font-weight: 700; font-size: 15px; color: #333; text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.google-badge .g { color: #4285f4; font-weight: 900; font-size: 18px; }

.reviews-masonry {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.review-entry {
  padding: 24px; border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.reviews-masonry > .review-entry:nth-child(even) { border-right: none; }
.review-ba-img {
  width: 100%; border: 1px solid var(--border); border-radius: 3px;
  overflow: hidden; margin-bottom: 14px;
}
.review-ba-img .ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.review-ba-img .ba-row2 { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
.review-ba-header {
  background: var(--navy); color: white; padding: 6px 10px;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px;
}
.review-ba-img .mini-img {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  position: relative;
}
.review-ba-img .mini-before { background: linear-gradient(135deg,#555,#777); color: rgba(255,255,255,.4); }
.review-ba-img .mini-after  { background: linear-gradient(135deg,#2a5a2a,#4a8a4a); color: rgba(255,255,255,.4); }
.review-text { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 12px; }
.review-author-name { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.review-stars { color: #e6a817; font-size: 18px; letter-spacing: 2px; }

/* ════════════════════════════════════════
   CONTACT / QUOTE PAGE
════════════════════════════════════════ */
.contact-page { max-width: 900px; margin: 0 auto; padding: 40px 20px; }
.contact-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700; color: #333; margin-bottom: 24px; text-align: center;
}
.trust-badges {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #333;
}
.trust-check { width: 28px; height: 28px; background: #2a7a2a; border-radius: 50%; color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.google-rating {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 20px;
}
.g-logo { font-size: 20px; font-weight: 900; color: #4285f4; }
.g-score { font-size: 16px; font-weight: 700; }
.g-stars { color: #e6a817; font-size: 18px; }

.zip-form-box {
  max-width: 500px; margin: 0 auto 32px;
  text-align: center;
}
.zip-form-box p { font-size: 14px; color: #555; margin-bottom: 14px; }
.zip-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.zip-form input {
  border: 1px solid #ccc; border-radius: 3px;
  padding: 10px 16px; font-size: 14px; width: 220px;
}
.zip-form input:focus { outline: none; border-color: var(--navy); }
.btn-green {
  background: #2a7a2a; color: white; border: none;
  padding: 10px 28px; border-radius: 3px;
  font-size: 14px; font-weight: 700; cursor: pointer; font-family: 'Open Sans', sans-serif;
}
.btn-green:hover { background: #1e5a1e; }
.form-note { font-size: 12px; color: #999; margin-top: 8px; }

.contact-detail-split {
  display: flex; gap: 48px; align-items: flex-start; margin-top: 24px;
}
.contact-person { flex: 1; }
.contact-person h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 600; margin-bottom: 12px;
}
.contact-person p { font-size: 14px; color: #555; margin-bottom: 6px; }
.contact-person a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-truck-photo {
  width: 320px; flex-shrink: 0; border-radius: 6px; overflow: hidden;
}
.truck-placeholder {
  width: 320px; height: 220px;
  background: linear-gradient(135deg, #2a5a2a, #1a3a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; border-radius: 6px;
}

/* Full quote form */
.full-quote-form { max-width: 600px; margin: 40px auto 0; }
.full-quote-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 20px;
}
.fq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fq-group { margin-bottom: 16px; }
.fq-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #666; margin-bottom: 5px; }
.fq-group input, .fq-group select, .fq-group textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ccc; border-radius: 3px;
  font-family: 'Open Sans', sans-serif; font-size: 14px; color: #333;
}
.fq-group input:focus, .fq-group select:focus, .fq-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 2px rgba(0,0,85,.1);
}
.fq-group textarea { min-height: 90px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--navy); color: white; border: none;
  padding: 14px; font-family: 'Open Sans', sans-serif; font-size: 15px;
  font-weight: 700; cursor: pointer; border-radius: 3px; margin-top: 4px;
}
.btn-submit:hover { background: var(--navy-dark); }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-page { max-width: 1100px; margin: 0 auto; padding: 40px 20px; }
.about-badges {
  display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap;
}
.about-badge { border: 1px solid var(--border); border-radius: 4px; padding: 6px 12px; }
.about-badge img, .about-badge-placeholder {
  width: 80px; height: 48px; object-fit: contain; display: block;
  background: var(--light-bg); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #999; text-align: center;
}
.about-video { max-width: 700px; margin: 0 auto 32px; }
.about-block { margin-bottom: 28px; }
.about-block strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.about-block p { font-size: 14px; color: #555; line-height: 1.8; }
.about-block .eco-img {
  float: right; width: 160px; margin: 0 0 12px 20px;
  border-radius: 4px;
  background: linear-gradient(135deg,#2a5a2a,#1a3a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(255,255,255,.5);
  aspect-ratio: 1;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer { background: #fff; border-top: 3px solid var(--navy); }
.footer-carekits {
  background: var(--light-bg); padding: 14px 24px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.footer-carekits a { font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; }
.footer-carekits a:hover { text-decoration: underline; }
.footer-body {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
  padding: 36px 20px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: #333; margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: #666; text-decoration: none; }
.footer-col a:hover { color: var(--navy); text-decoration: underline; }
.social-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.social-link {
  font-size: 12px; font-weight: 700; color: var(--navy);
  text-decoration: none; border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 3px;
}
.social-link:hover { background: var(--navy); color: white; border-color: var(--navy); }
.support-logos { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.support-logo-placeholder {
  height: 36px; padding: 4px 10px;
  background: var(--light-bg); border: 1px solid var(--border);
  border-radius: 3px; font-size: 11px; color: #999;
  display: flex; align-items: center;
}
.footer-bottom {
  background: #1a1a2e; color: rgba(255,255,255,.5);
  text-align: center; padding: 14px 20px; font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: #1a3a1a; color: white; padding: 14px 22px;
  border-radius: 4px; border-left: 4px solid #2a7a2a;
  font-size: 14px; font-weight: 600;
  transform: translateY(80px); opacity: 0;
  transition: .35s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-icons { display: none; }
  .hero-slides { height: 280px; }
  .hero-slide { padding: 20px; }
  .widgets-grid { grid-template-columns: 1fr; }
  .widget-item:nth-child(odd) { border-right: none; padding-right: 0; }
  .widget-item:nth-child(even) { padding-left: 0; }
  .reason-split { flex-direction: column; }
  .reason-img { width: 100%; min-height: 160px; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .ba-gallery { grid-template-columns: 1fr; }
  .reviews-masonry { grid-template-columns: 1fr; }
  .review-entry { border-right: none; }
  .contact-detail-split { flex-direction: column; }
  .contact-truck-photo, .truck-placeholder { width: 100%; }
  .fq-row { grid-template-columns: 1fr; }
  .footer-body { grid-template-columns: 1fr; gap: 24px; }
  .service-layout { flex-direction: column; }
  .service-video { width: 100%; aspect-ratio: 16/9; max-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .estimate-bar { gap: 12px; }
  .estimate-ways { gap: 10px; }
  .owner-strip-right { padding: 12px 16px; }
}
@media (max-width: 560px) {
  .cities-grid { grid-template-columns: 1fr; }
  .logo-name { font-size: 24px; }
  .trust-badges { flex-direction: column; align-items: center; }
  .contact-page h1 { font-size: 22px; }
}
