:root {
  --brown: #3a1919;
  --orange: #F64C00;
  --orange-light: #ffa35a;
  --orange-dark: #cc3d00;
  --white: #ffffff;
  --off-white: #faf7f5;
  --light-gray: #f3ede9;
  --border: rgba(58,25,25,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Titillium Web', sans-serif;
  color: var(--white);
  background: var(--off-white);
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.btn-orange {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--orange); color: #fff;
  padding: 0.65rem 1.4rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; color: var(--orange);
  padding: 0.65rem 1.4rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; font-family: inherit;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-white:hover { background: #ffe8dc; }

.section-tag {
  display: inline-block;
  background: rgba(246,76,0,0.1);
  color: var(--orange);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
  border-radius: 20px; margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.15; color: var(--brown);
}
.section-sub {
  color: #7a5555; font-size: 1.05rem; margin-top: 0.5rem; line-height: 1.6;
}

/* ===== NAV ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none;
  padding: 0.75rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(58,25,25,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-img { height: 44px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange-light); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-phone {
  color: #fff; text-decoration: none;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.35rem;
}
.nav-phone:hover { color: var(--orange-light); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.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); }
.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(58,25,25,0.98); padding: 1rem 1.25rem 1.5rem;
  gap: 0.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 1rem; font-weight: 600; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange-light); }

/* ===== HERO DYNAMIC HEADLINE ===== */
.hero-headline-wrap { margin-bottom: 0.75rem; min-height: 4rem; }
.hero-dyn-title {
  font-size: clamp(2.02rem, 3.70vw, 3.40rem);
  font-weight: 700; color: #fff; line-height: 1.0;
  letter-spacing: -0.01em;
  -webkit-text-stroke: 0.25px var(--white);
  text-shadow: 0 3px 24px rgba(0,0,0,0.6);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.hero-dyn-title .accent {
  color: #fff;
  display: block;
  font-weight: 600;
  font-style: italic;
  -webkit-text-stroke: 0.00px var(--white);
  text-shadow: 0 3px 24px rgba(246,76,0,0.35);
}
.hero-dyn-title.fading {
  opacity: 0.15;
  transform: translateY(8px);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

/* Slides */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
.hero-slide { filter: none; }

/* Slide headline — fades in with slide */
.slide-headline {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 1.5rem 2rem 1.75rem;
  background: linear-gradient(to top, rgba(58,25,25,0.75) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
  pointer-events: none;
}
.hero-slide.active .slide-headline {
  opacity: 1; transform: translateY(0);
}
.slide-headline-tag {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.2rem 0.6rem;
  border-radius: 3px; margin-bottom: 0.35rem;
}
.slide-headline h1 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* Slide nav dots */
.hero-nav {
  position: absolute; bottom: 1.25rem; right: 1.5rem;
  z-index: 10; display: flex; gap: 0.45rem; align-items: center;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  padding: 0; transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--orange); transform: scale(1.25); }

/* Progress bar */
.hero-progress {
  position: absolute; bottom: 0; left: 0; z-index: 10;
  height: 3px; background: var(--orange);
  width: 0; transition: width linear;
}

/* ===== HERO LAYOUT ===== */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}
.hero-content { position: relative; z-index: 5; flex: 1 1 0; min-width: 0; }

/* CTA Box */
.hero-cta-box {
  position: relative; z-index: 5;
  flex: 0 0 320px;
  background: rgba(255,255,255,0.97);
  border: 2px solid var(--brown);
  backdrop-filter: blur(14px);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-cta-box-title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.01em;
}
.hero-cta-box-title span { color: var(--brown); }
.hero-cta-box-sub {
  font-size: 0.88rem;
  color: rgba(58,25,25,0.85);
  line-height: 1.55;
}
.hero-cta-box-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hero-cta-box-perks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
}
.hero-cta-box-perks li svg { flex-shrink: 0; color: var(--orange); }
.hero-cta-box .btn-orange {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
}
.hcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.hero-cta-box .form-group { margin-bottom: 0.55rem; }
.hero-cta-box .form-group label { font-size: 0.75rem; font-weight: 600; color: rgba(0,0,0,0.85); margin-bottom: 0.2rem; display: block; }
.hero-cta-box .form-group input,
.hero-cta-box .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.15); border: 3px solid rgba(0,0,0,0.3);
  border-radius: 6px; padding: 0.55rem 0.8rem;
  color: #000; font-family: inherit; font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}
.hero-cta-box .form-group input::placeholder { color: var(--brown)}
.hero-cta-box .form-group select option { background: var(--brown); color: #000; }
.hero-cta-box .form-group input:focus,
.hero-cta-box .form-group select:focus { outline: none; border-color: #000; background: rgba(255,255,255,0.2); }
.hero-cta-box .form-submit {
  width: 100%; background: var(--orange); color: #fff;
  border: none; border-radius: 8px; padding: 0.85rem 1rem;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.hero-cta-box .form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hero-cta-box-tel {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero-cta-box-tel a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.hero-cta-box-tel a:hover { color: var(--orange-light); }
@media (max-width: 900px) {
  .hero-cta-box { display: none; }
  .hero-inner { display: block; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(246,76,0,0.25); border: 1px solid rgba(246,76,0,0.4);
  color: #ffb380; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 20px; margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-sub {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 700;
  max-width: 520px; line-height: 1.6; margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.hero-bullet {
  background: rgba(246,76,0,0.20); color: #fff;
  font-size: 0.82rem; font-weight: 600; padding: 0.3rem 0.7rem;
  border-radius: 4px; border: 1px solid rgba(246,76,0,0.35);
  backdrop-filter: blur(6px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.hero-contact {
  display: flex; flex-wrap: wrap; gap: 1.25rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: color 0.2s;
}
.hero-contact-item:hover { color: var(--orange-light); }
.hero-contact-item .icon {
  width: 36px; height: 36px; background: var(--orange); border-radius: 90%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===== MARQUEE ===== */
.marquee-bar {
  background: var(--brown); color: #fff;
  padding: 0.6rem 0; overflow: hidden;
  font-size: 1.10rem; font-weight: 700; letter-spacing: 0.04em;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span { padding: 0 2rem; }
.marquee-track .dot { color: rgba(255,255,255,0.5); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== TRUST BADGES ===== */
#trust {
  background: #fff; padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 700; font-size: 0.9rem; color: var(--brown);
}
.trust-badge img { height: 44px; width: auto; object-fit: contain; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ===== WHY US ===== */
#why {
  padding: 5rem 0;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.why-card {
  background: var(--brown); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 1.75rem; color: #fff;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.why-card:hover {
  background: #4a2020;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  border-color: var(--orange);
}
.why-icon {
  width: 48px; height: 48px; background: rgba(246,76,0,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--orange);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: #fff; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

/* ===== SERVICES ===== */
#services {
  padding: 5rem 0;
  background: #fff;
  color: var(--orange-light);
}
#services .section-title { color: var(--brown); }
#services .section-sub { color: var(--brown); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  background: var(--white); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 2rem; color: var(--brown);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  background: rgba(246,76,0,0.08); border-color: var(--orange);
  transform: translateY(-3px);
}
.service-card-header {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.service-icon {
  width: 48px; height: 48px; background: var(--white); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: #000; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.90rem; color: rgba(0,0,0,0.95); line-height: 1.5;
}
.service-list li::before {
  content: '✓'; color: var(--orange); font-weight: 700;
  flex-shrink: 0; margin-top: 0.05rem;
}

/* ===== STATS ===== */
#stats {
  background: var(--orange); padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1;
}
.stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
  font-weight: 600; margin-top: 0.35rem; letter-spacing: 0.02em;
}

/* ===== GALLERY ===== */
#gallery {
  padding: 5rem 0;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 700; font-size: 0.9rem; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
#lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  background: #fff; border: none; border-radius: 50%;
  width: 40px; height: 40px; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
#lightbox-close:hover { transform: scale(1.1); }

/* ===== AREAS ===== */
#areas {
  padding: 5rem 0;
  background: #fff;
}
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}
.area-chip {
  background: var(--light-gray); color: var(--brown);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: 20px;
  border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.area-chip:hover { background: var(--orange); color: #fff; }
.areas-note {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: rgba(246,76,0,0.06); border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0; font-size: 0.9rem; color: var(--brown);
}
.areas-note strong { color: var(--orange); }

/* ===== REVIEWS ===== */
#reviews {
  padding: 5rem 0;
  background: var(--brown);
  color: #fff;
}
#reviews .section-title { color: #fff; }
#reviews .section-sub { color: rgba(255,255,255,0.7); }
.reviews-slider { position: relative; margin-top: 2.5rem; }
.review-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 2rem;
  display: none;
}
.review-card.active { display: block; }
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.review-text { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.6rem; }
.review-avatar {
  width: 40px; height: 40px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-source { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.5rem;
}
.slider-btn {
  width: 40px; height: 40px; background: var(--orange); border: none;
  border-radius: 50%; cursor: pointer; color: #fff; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; flex-shrink: 0;
}
.slider-btn:hover { background: var(--orange-dark); }
.slider-dots { display: flex; gap: 0.4rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--orange); }
.checkatrade-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2rem; color: rgba(255,255,255,0.8);
  text-decoration: none; font-weight: 700; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.checkatrade-link:hover { color: var(--orange-light); }

/* ===== FAQ ===== */
#faq {
  padding: 5rem 0;
  background: var(--off-white);
}
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: inherit; font-size: 0.98rem; font-weight: 700;
  color: var(--brown); text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(246,76,0,0.04); }
.faq-question.open { color: var(--orange); }
.faq-chevron {
  flex-shrink: 0; transition: transform 0.3s;
  color: var(--orange); font-size: 0.85rem;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem; color: #7a5555; line-height: 1.7;
  padding: 0 1.4rem;
}
.faq-answer.open { max-height: 400px; padding: 0 1.4rem 1.2rem; }

/* ===== ABOUT ===== */
#about {
  padding: 5rem 0;
  background: #fff;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2rem;
}
.about-img-wrap { position: relative; border-radius: 14px; overflow: hidden; }
.about-img-wrap img { width: 100%; display: block; }
.about-img-badge {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  background: var(--orange); color: #fff;
  padding: 0.75rem 1rem; border-radius: 10px;
  font-weight: 900; font-size: 1.5rem; text-align: center;
  line-height: 1.1; box-shadow: 0 4px 20px rgba(246,76,0,0.4);
}
.about-img-badge small { font-size: 0.65rem; font-weight: 600; display: block; }
.about-features { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; color: var(--brown);
}
.about-feature-icon {
  width: 28px; height: 28px; background: rgba(246,76,0,0.1);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0; margin-top: 0.1rem;
}

/* ===== CONTACT / QUOTE ===== */
#contact {
  padding: 5rem 0;
  background: var(--brown);
  color: #fff;
}
#contact .section-title { color: #fff; }
#contact .section-sub { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2.5rem;
}
.contact-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px; padding: 0.6rem 0.9rem;
  color: #fff; font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: var(--brown); color: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.14);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; background: var(--orange); color: #fff;
  border: none; border-radius: 6px; padding: 0.75rem;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 2rem;
  color: #fff;
}
.form-success .checkmark { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; }
.form-success p { color: rgba(255,255,255,0.7); }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-info-icon {
  width: 48px; height: 48px; background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.contact-info-text h4 { font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-text a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.contact-info-text a:hover { color: var(--orange-light); }
.contact-info-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25d366; color: #fff;
  padding: 0.65rem 1.2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  margin-top: 0.5rem; transition: background 0.2s;
}
.wa-btn:hover { background: #1eb856; }
.social-links { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-link {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--orange); color: #fff; }

/* ===== FOOTER ===== */
footer {
  background: #1a0a0a; color: rgba(255,255,255,0.6);
  padding: 2rem 0; text-align: center;
  font-size: 0.82rem;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--orange-light); }
footer .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 1; transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
/* Optional animation only when JS adds .reveal-anim before visible */
.reveal.reveal-anim {
  opacity: 0; transform: translateY(24px);
}
.reveal.visible,
.reveal.reveal-anim.visible {
  opacity: 1; transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* --- Tablet: 900px --- */
@media (max-width: 900px) {
  /* Hero */
  .hero-cta-box { display: none; }
  .hero-inner { display: block; }
  #hero { min-height: 80vh; padding: 6rem 0 3rem; }
  .hero-content { max-width: 100% !important; }
  .hero-contact { gap: 0.85rem; margin-top: 1.5rem; padding-top: 1.25rem; }

  /* Layouts */
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile: 768px --- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-logo-img { height: 36px; }

  /* Hero */
  #hero { min-height: 75vh; padding: 5.5rem 0 2.5rem; }
  .hero-dyn-title { font-size: clamp(1.75rem, 7vw, 2.8rem) !important; }
  .hero-sub { font-size: 1rem; }
  .hero-bullets { gap: 0.4rem; }
  .hero-bullet { font-size: 0.78rem; padding: 0.25rem 0.6rem; }
  .hero-contact { flex-wrap: wrap; gap: 0.75rem; }
  .hero-contact-item { font-size: 0.85rem; }

  /* Sections */
  .section-title { font-size: clamp(1.4rem, 5vw, 2rem); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
  .trust-divider { display: none; }
  .trust-badge { flex: 0 0 calc(50% - 0.75rem); justify-content: center; }

  /* Reviews */
  .reviews-slider { padding: 0; }
  .review-card { padding: 1.5rem; }

  /* FAQ */
  .faq-question { font-size: 0.95rem; padding: 1rem 1.1rem; }

  /* Contact */
  .contact-form { padding: 1.5rem; }
  .contact-info { gap: 1rem; }

  /* About */
  .about-grid { gap: 2rem; }
  .about-img-badge { font-size: 1.1rem; padding: 0.5rem 0.75rem; }

  /* Areas */
  .area-chip { font-size: 0.8rem; padding: 0.35rem 0.75rem; }

  /* Footer */
  .footer-links { gap: 0.75rem; font-size: 0.8rem; }
}

/* --- Small mobile: 480px --- */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  /* Hero */
  #hero { min-height: 70vh; padding: 5rem 0 2rem; }
  .hero-dyn-title { font-size: clamp(1.55rem, 8vw, 2.2rem) !important; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 2rem; }
  .hero-bullets { gap: 0.35rem; }
  .hero-contact { flex-direction: column; gap: 0.6rem; }

  /* Grids */
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Sections padding */
  #services, #why, #areas, #reviews, #faq, #about, #contact { padding: 3rem 0; }
  #stats { padding: 2.5rem 0; }

  /* Trust badges */
  .trust-inner { flex-direction: column; align-items: center; }
  .trust-badge { width: 100%; justify-content: center; }
  .trust-divider { display: none; }

  /* Contact form */
  .hcf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }

  /* Footer */
  .footer-links { flex-direction: column; align-items: center; gap: 0.5rem; }
}

/* Production fixes */
.hero-cta-box input, .hero-cta-box select { color: var(--brown) !important; background: #fff !important; }
.hero-cta-box input::placeholder { color: rgba(58,25,25,0.55) !important; }
.hero-cta-box .form-submit { color: #fff !important; }
.hero-cta-box-tel { color: rgba(58,25,25,0.72) !important; }
.hero-cta-box-tel a { color: var(--brown) !important; }
.service-icon svg { stroke: var(--orange) !important; }
img { max-width: 100%; }

/* ===== SERVICES DROPDOWN MENU ===== */
.nav-links > li.nav-services {
  position: relative;
}
.nav-links > li.nav-services > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links > li.nav-services > a::after {
  content: "▾";
  font-size: 0.7em;
  line-height: 1;
  opacity: 0.8;
}
.services-submenu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}
.nav-services:hover .services-submenu,
.nav-services:focus-within .services-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.services-submenu li a {
  display: block;
  padding: 0.65rem 0.8rem;
  color: var(--brown) !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 7px;
  white-space: nowrap;
}
.services-submenu li a:hover,
.services-submenu li a:focus {
  background: rgba(246,76,0,0.08);
  color: var(--orange) !important;
}

@media (max-width: 900px) {
  .services-submenu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0.25rem 0 0.5rem;
    padding: 0.25rem 0 0.25rem 1rem;
    background: transparent;
    box-shadow: none;
    border-left: 2px solid rgba(246,76,0,0.35);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .services-submenu li a {
    color: #fff !important;
    padding: 0.5rem 0.75rem;
  }
  .services-submenu li a:hover,
  .services-submenu li a:focus {
    background: rgba(255,255,255,0.08);
    color: var(--orange-light) !important;
  }
}


@media (max-width: 900px) {
  .mobile-services-parent {
    width: 100%;
  }
  .mobile-services-parent > a {
    display: block;
  }
  .mobile-services-submenu {
    margin: 0.15rem 0 0.5rem 0.75rem;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(246,76,0,0.4);
  }
  .mobile-services-submenu a {
    font-size: 0.88rem !important;
    padding: 0.4rem 0 !important;
    opacity: 0.9;
  }
}


/* ===== FINAL SERVICES MENU ===== */
.nav-links > li.nav-services { position: relative; }
.nav-links > li.nav-services > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-links > li.nav-services > a::after {
  content: "▾";
  font-size: .7em;
}
.services-submenu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 260px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1000;
}
.nav-services:hover .services-submenu,
.nav-services:focus-within .services-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.services-submenu li a {
  display: block;
  padding: .65rem .8rem;
  border-radius: 7px;
  color: var(--brown) !important;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.services-submenu li a:hover,
.services-submenu li a:focus {
  background: rgba(246,76,0,.08);
  color: var(--orange) !important;
}
@media (max-width: 900px) {
  .services-submenu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: .25rem 0 .5rem;
    padding: .25rem 0 .25rem 1rem;
    background: transparent;
    box-shadow: none;
    border-left: 2px solid rgba(246,76,0,.35);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .services-submenu li a {
    color: #fff !important;
  }
  .mobile-services-parent { width: 100%; }
  .mobile-services-submenu {
    margin: .15rem 0 .5rem .75rem;
    padding-left: .75rem;
    border-left: 2px solid rgba(246,76,0,.4);
  }
  .mobile-services-submenu a {
    display: block;
    padding: .4rem 0;
    font-size: .88rem !important;
    opacity: .9;
  }
}


/* Services dropdown */
.nav-links > li.nav-services { position: relative; }
.nav-links > li.nav-services > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-links > li.nav-services > a::after {
  content: "▾";
  font-size: .7em;
}
.services-submenu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 255px;
  padding: .5rem;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
}
.nav-services:hover > .services-submenu,
.nav-services:focus-within > .services-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.services-submenu li a {
  display: block;
  padding: .65rem .8rem;
  border-radius: 7px;
  color: var(--brown) !important;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}
.services-submenu li a:hover,
.services-submenu li a:focus {
  background: rgba(246,76,0,.08);
  color: var(--orange) !important;
}
.mobile-services-submenu {
  margin: .15rem 0 .5rem .75rem;
  padding-left: .75rem;
  border-left: 2px solid rgba(246,76,0,.4);
}
.mobile-services-submenu a {
  display: block;
  font-size: .88rem !important;
  padding: .4rem 0 !important;
}


/* Spray Foam Removal guide child menu - menu-only addition */
.services-submenu li.services-has-child { position: relative; }
.services-submenu li.services-has-child > .services-child-submenu { position:absolute; left:calc(100% + .35rem); top:-.5rem; min-width:310px; padding:.5rem; margin:0; list-style:none; background:#fff; border-radius:10px; box-shadow:0 14px 35px rgba(0,0,0,.18); opacity:0; visibility:hidden; pointer-events:none; transform:translateX(-6px); transition:opacity .2s ease,transform .2s ease,visibility .2s ease; }
.services-submenu li.services-has-child:hover > .services-child-submenu, .services-submenu li.services-has-child:focus-within > .services-child-submenu { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(0); }
.services-child-submenu li a { display:block; padding:.65rem .8rem; color:var(--brown)!important; text-decoration:none; border-radius:7px; white-space:nowrap; }
.services-child-submenu li a:hover,.services-child-submenu li a:focus { background:rgba(246,76,0,.08); color:var(--orange)!important; }
@media (max-width:900px) { .services-submenu li.services-has-child > .services-child-submenu { position:static; min-width:0; width:100%; padding:.15rem 0 .15rem .75rem; margin:0; background:transparent; box-shadow:none; border-left:1px solid rgba(255,255,255,.2); opacity:1; visibility:visible; pointer-events:auto; transform:none; } .services-child-submenu li a { color:#fff!important; font-size:.88rem!important; padding:.4rem .5rem!important; } .mobile-services-guide { padding-left:1.4rem!important; font-size:.88rem!important; opacity:.9; } }

/* ===== Clickable Services triangle + highlight ===== */
.nav-links > li.nav-services {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  position: relative;
}
.nav-links > li.nav-services > a.nav-services-link {
  display: inline-flex;
  align-items: center;
}
/* Hide old CSS triangle if present */
.nav-links > li.nav-services > a.nav-services-link::after {
  content: none !important;
  display: none !important;
}
.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 0.75em;
  line-height: 1;
  padding: 0.35rem 0.4rem;
  margin: 0;
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.85;
  transition: background 0.15s ease, color 0.15s ease, transform 0.2s ease, opacity 0.15s ease;
}
.nav-services-toggle:hover,
.nav-services-toggle:focus {
  background: rgba(246, 76, 0, 0.15);
  color: var(--orange);
  opacity: 1;
  outline: none;
}
.nav-services.open > .nav-services-toggle,
.nav-services-toggle[aria-expanded="true"] {
  background: rgba(246, 76, 0, 0.2);
  color: var(--orange);
  opacity: 1;
  transform: rotate(180deg);
}
/* Highlight Services text when dropdown open or on services section */
.nav-services.open > .nav-services-link,
.nav-services-link.active,
.nav-links a.active {
  color: var(--orange) !important;
}
/* Show submenu when .open class is set (click) OR hover/focus */
.nav-services.open > .services-submenu,
.nav-services:hover > .services-submenu,
.nav-services:focus-within > .services-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}
@media (max-width: 900px) {
  .nav-services-toggle {
    display: none; /* mobile uses its own menu */
  }
}

/* ===== Anchor offset for fixed navbar + force visible on jump ===== */
#services,
#trust,
#why,
#stats,
#gallery,
#areas,
#reviews,
#faq,
#about,
#contact {
  scroll-margin-top: 90px;
}

/* If JS fails or is slow, still show content after a moment */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===== Visibility safety fixes ===== */
.hero-dyn-title {
  opacity: 1 !important;
  color: #fff !important;
  text-shadow: 0 3px 24px rgba(0,0,0,0.65) !important;
}
.hero-dyn-title.fading {
  opacity: 0.35 !important; /* don't fully hide during transition */
}
.hero-cta-box .form-submit {
  color: #fff !important;
  background: var(--orange) !important;
  font-weight: 700 !important;
}
.hero-content,
.hero-content * {
  /* keep hero text readable over photos */
}
.hero-bullets .hero-bullet {
  color: #fff !important;
}


/* ===== Hero text always crisp (no washed-out look) ===== */
#hero .hero-dyn-title,
#hero .hero-dyn-title .accent {
  color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.85),
    0 4px 20px rgba(0,0,0,0.65),
    0 0 40px rgba(0,0,0,0.4) !important;
  opacity: 1;
}
#hero .hero-dyn-title.fading {
  opacity: 0.2 !important;
}
#hero .hero-sub {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.75) !important;
  opacity: 1 !important;
}
#hero .hero-bullet {
  color: #fff !important;
  background: rgba(0,0,0,0.45) !important;
  border-color: rgba(246,76,0,0.6) !important;
}
#hero .hero-contact-item {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
