/* =========================================
   D-BARRAS — Site Résidentiel Authentique
   Inspiré de JunkTeens.com
   Fond gris clair, blanc, orange & noir
   Police: Nunito + Bebas Neue
   ========================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #EDEEF0;  /* gris clair doux comme JunkTeens */
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; }

.wrap {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHIE --- */
.section-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 54px;
  letter-spacing: 1.5px;
  color: #111;
  line-height: 1;
  text-align: center;
  margin-bottom: 14px;
}

.left-heading {
  text-align: left;
}

.section-sub {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* --- BOUTONS --- */
.btn-quote {
  display: inline-block;
  background-color: #FF5300;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}

.btn-quote:hover {
  background-color: #E04800;
  transform: translateY(-2px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f1f1;
  color: #111;
  font-size: 16px;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 8px;
  border: 2px solid #ddd;
  transition: border-color 0.2s;
}

.btn-phone svg { width: 17px; height: 17px; }
.btn-phone:hover { border-color: #FF5300; color: #FF5300; }

.btn-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  color: #FF5300;
  font-size: 22px;
  font-weight: 900;
  padding: 14px 0;
  border-bottom: 3px solid #FF5300;
  transition: color 0.2s;
}

.btn-phone-big svg { width: 22px; height: 22px; }
.btn-phone-big:hover { color: #E04800; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 26px;
  border-radius: 8px;
  border: 2px solid #ccc;
  transition: border-color 0.2s, color 0.2s;
}

.btn-call svg { width: 18px; height: 18px; }
.btn-call:hover { border-color: #FF5300; color: #FF5300; }

.btn-learn {
  display: inline-block;
  color: #FF5300;
  font-weight: 800;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid #FF5300;
  transition: color 0.2s;
}
.btn-learn:hover { color: #E04800; }

/* --- SITE HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 2px solid #E0E0E0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  height: 74px;
  max-height: 74px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logo:hover {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.main-nav a {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  transition: color 0.2s;
}
.main-nav a:hover { color: #FF5300; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-cta-btn {
  font-size: 20px;
  padding: 14px 28px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(255, 83, 0, 0.28);
}
.header-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(255, 83, 0, 0.42);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #111;
  border-radius: 2px;
  transition: all 0.25s;
}

/* --- MOBILE NAV --- */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 24px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
}

.mobile-nav.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  margin-bottom: 24px;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav nav a {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}

.mobile-nav nav a:hover { color: #FF5300; }

.mobile-quote {
  margin-top: 10px;
  text-align: center;
  justify-content: center;
}

.mobile-phone {
  font-size: 20px;
  font-weight: 800;
  color: #FF5300 !important;
  border-bottom: none !important;
}

/* --- HERO SECTION --- */
.hero {
  padding: 36px 0 24px;
  background-color: #EDEEF0;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
  min-height: 580px;
}

.hero-card {
  background: #fff;
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 2px;
  color: #111;
}

.hero-sub {
  font-size: 17px;
  color: #444;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.hero-quote-btn {
  font-size: 22px;
  letter-spacing: 0.8px;
  padding: 16px 34px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(255, 83, 0, 0.3);
}

.hero-quote-btn:hover {
  box-shadow: 0 6px 22px rgba(255, 83, 0, 0.45);
}

.hero-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f8;
  color: #111;
  font-weight: 800;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid #ddd;
  transition: all 0.2s;
  text-decoration: none;
}

.hero-call-btn:hover {
  background: #fff;
  border-color: #FF5300;
  color: #FF5300;
  transform: translateY(-2px);
}

.hero-reviews {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.review-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  padding: 8px 16px;
  border-radius: 10px;
}

.google-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-text .review-stars { color: #FBBC04; font-size: 14px; }
.review-text .review-count { font-size: 13px; font-weight: 700; color: #333; }

.hero-blurb {
  background: #FFF5F0;
  border-left: 4px solid #FF5300;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
}

.hero-blurb p { font-size: 14px; color: #333; font-style: italic; }
.hero-blurb-name { font-size: 13px; color: #888; font-weight: 700; }

.hero-icons {
  display: flex;
  gap: 20px;
  padding-top: 4px;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hero-icon-item svg {
  width: 44px;
  height: 44px;
  color: #FF5300;
}

.hero-icon-item span { font-size: 11px; font-weight: 700; color: #555; }

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  background: #1a1a1a;
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

/* Both layers fill the container completely */
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-after {
  z-index: 1;
}

.ba-before {
  z-index: 2;
  /* Clipped from the right: clip-path updated by JS */
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  draggable: false;
}

/* AVANT / APRÈS labels */
.ba-label {
  position: absolute;
  top: 18px;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 5;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.ba-label-before {
  left: 16px;
  background: rgba(0, 0, 0, 0.65);
}

.ba-label-after {
  right: 16px;
  background: rgba(255, 83, 0, 0.85);
}

/* Draggable handle: vertical line + circle button */
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none; /* clicks pass through to slider container */
}

.ba-line {
  width: 3px;
  flex-grow: 1;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.ba-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FF5300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 3px 14px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.6);
  pointer-events: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  flex-shrink: 0;
}

.ba-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  flex-shrink: 0;
}

/* Active state — slightly bigger */
.ba-slider:active .ba-btn,
.ba-slider.dragging .ba-btn {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5), 0 0 0 4px rgba(255,255,255,0.8);
}

/* Hint overlay */
.ba-hint {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.ba-hint span {
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(3px);
}

.ba-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

/* --- SERVICES SECTION --- */
.section-services {
  padding: 80px 0;
  background: #EDEEF0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-photo {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #1e1e1e;
}

/* Before / After Slider inside Service Card */
.card-slider {
  position: relative;
  width: 100%;
  height: 380px !important;
  min-height: 380px !important;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.card-slider .ba-after,
.card-slider .ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 380px !important;
}

.card-slider .ba-after img,
.card-slider .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
}

.card-slider .ba-btn {
  width: 38px;
  height: 38px;
}

.card-slider .ba-btn svg {
  width: 15px;
  height: 15px;
}

.card-slider .ba-label {
  font-size: 13px;
  padding: 3px 12px;
  top: 14px;
}

.card-slider .ba-label-after {
  right: 12px;
}

.card-slider .ba-label-before {
  right: auto;
  left: auto;
  left: 12px;
}

/* Placeholder for Cabanon */
.service-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #242424 0%, #151515 100%);
  color: #fff;
}

.cabanon-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
}

.placeholder-icon svg {
  width: 52px;
  height: 52px;
  color: #FF5300;
  stroke: #FF5300;
}

.placeholder-tag {
  display: inline-block;
  background: rgba(255, 83, 0, 0.16);
  color: #FFA066;
  border: 1px solid rgba(255, 83, 0, 0.35);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.service-photo-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  top: auto;
  background: rgba(0,0,0,0.78);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 16px;
  letter-spacing: 0.3px;
  z-index: 5;
  pointer-events: none;
}

.service-card-body {
  padding: 28px 28px 24px;
}

.service-card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 16px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.check-list li {
  font-size: 15px;
  color: #444;
  padding-left: 22px;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF5300;
  font-weight: 900;
}

/* --- ZONE SECTION --- */
.section-zone {
  background: #FF5300;
  padding: 70px 0;
  color: #fff;
}

.zone-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.section-zone .section-heading {
  color: #fff;
  margin-bottom: 16px;
}

.section-zone p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 24px;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.zone-tags span {
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}

.section-zone .btn-phone-big {
  color: #fff;
  border-bottom-color: #fff;
  font-size: 26px;
}
.section-zone .btn-phone-big:hover { color: rgba(255,255,255,0.8); }

.zone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.zone-stat {
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: #fff;
  line-height: 1;
}

.stat-desc {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
}

/* --- GALLERY SECTION --- */
.section-gallery {
  padding: 80px 0;
  background: #EDEEF0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 14px rgba(0,0,0,0.1);
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s, opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-wide img { height: 300px; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  padding: 30px 18px 16px;
  font-size: 15px;
  font-weight: 800;
}

/* --- HOW SECTION --- */
.section-how {
  padding: 80px 0;
  background: #fff;
  border-top: 2px solid #E0E0E0;
  border-bottom: 2px solid #E0E0E0;
  scroll-margin-top: 80px;
}

.how-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 50px;
  max-width: 1100px;
}

.how-step {
  flex: 1;
  background: #f8f8f8;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid #EAEAEA;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-step:hover {
  border-color: #FF5300;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.how-num {
  width: 54px;
  height: 54px;
  background: #FF5300;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.how-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}

.how-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.how-arrow {
  font-size: 32px;
  color: #FF5300;
  align-self: center;
  flex-shrink: 0;
  opacity: 0.6;
}

.how-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- REVIEWS SECTION --- */
.section-reviews {
  padding: 80px 0;
  background: #EDEEF0;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.big-stars { color: #FBBC04; font-size: 20px; }
.big-rating { font-size: 15px; font-weight: 700; color: #333; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
  border: 1px solid #EAEAEA;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: #FF5300;
}

.rc-stars { color: #FBBC04; font-size: 18px; }

.rc-text {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.65;
  flex-grow: 1;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid #F0F0F0;
}

.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5300, #D44200);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-author strong { display: block; font-size: 15px; color: #111; }
.rc-author small { font-size: 13px; color: #888; }

/* --- QUOTE FORM SECTION --- */
.section-quote {
  padding: 80px 0;
  background: #fff;
  border-top: 2px solid #E0E0E0;
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.quote-text p {
  font-size: 17px;
  color: #555;
  margin: 18px 0 26px;
  line-height: 1.6;
}

.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.quote-promises li {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  padding-left: 4px;
}

.quote-form-box {
  background: #F8F8F8;
  border: 2px solid #E0E0E0;
  border-radius: 20px;
  padding: 36px 32px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-note {
  font-weight: 700;
  color: #222;
  font-size: 15px;
}

.quote-form select,
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: #fff;
  border: 2px solid #DCDCDC;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #222;
  transition: border-color 0.2s;
}

.quote-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #FF5300;
}

.quote-form select option { background: #fff; }

.file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

.file-label:hover { border-color: #FF5300; }
.file-label input { display: none; }

.btn-submit {
  background: #FF5300;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.btn-submit:hover {
  background: #E04800;
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: #888;
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #22C55E;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #111;
  margin-bottom: 10px;
}

.form-success p { font-size: 16px; color: #555; margin-bottom: 24px; }

/* --- FOOTER --- */
.site-footer {
  background: #111;
  color: #999;
  padding: 60px 0 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 18px; }

.footer-brand p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 15px;
  font-weight: 700;
  color: #FF5300;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #FF7733; }

.footer-links h4 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links li a,
.footer-links li {
  font-size: 14px;
  color: #777;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-links li a:hover { color: #FF5300; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.footer-bottom p { font-size: 13px; color: #555; }

/* --- STICKY MOBILE BAR --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #fff;
  border-top: 2px solid #E0E0E0;
  padding: 10px 16px;
  gap: 12px;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.1);
}

.smb-call, .smb-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
}

.smb-call {
  background: #f3f3f3;
  color: #111;
  border: 2px solid #ccc;
}

.smb-call svg { width: 18px; height: 18px; }

.smb-quote {
  background: #FF5300;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* =============================
   RESPONSIVE — MOBILE FIRST
   ============================= */

/* Tablet large / small desktop / resized window */
@media (max-width: 1024px) {
  .nav-wrap { height: 80px; gap: 16px; }
  .logo { height: 60px; max-height: 60px; }
  .main-nav { display: none; }
  .btn-phone { display: none; }
  .burger { display: flex; }
  .header-cta-btn {
    font-size: 16px;
    padding: 11px 18px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* Hero stacks gracefully with slider on top */
  .hero { padding: 20px 0 10px; }
  .hero-wrap {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 16px;
  }
  .hero-photo {
    order: 1;
    width: 100%;
    height: 380px !important;
    min-height: 380px !important;
    border-radius: 16px 16px 0 0;
  }
  .hero-photo .ba-slider {
    height: 380px !important;
    min-height: 380px !important;
  }
  .ba-after, .ba-before { min-height: 380px; }
  .hero-card {
    order: 2;
    padding: 32px 24px;
    gap: 18px;
    border-radius: 0 0 16px 16px;
  }
  .hero-title { font-size: 54px; }
  .hero-quote-btn { width: 100%; text-align: center; font-size: 21px; padding: 16px; }
  .hero-call-btn { width: 100%; text-align: center; justify-content: center; font-size: 16px; padding: 13px 20px; }
}

/* Tablet / large phone */
@media (max-width: 768px) {
  /* Global padding to never hide behind sticky bar */
  body { padding-bottom: 76px; }

  .wrap { padding: 0 16px; }

  /* Header: logo + button + burger on right */
  .nav-wrap { height: 72px; gap: 12px; }
  .logo { height: 52px; max-height: 52px; }
  .btn-phone { display: none; }
  .header-cta-btn {
    font-size: 15px;
    padding: 10px 16px;
    letter-spacing: 0.4px;
    border-radius: 8px;
    white-space: nowrap;
  }

  /* Hero on mobile */
  .hero { padding: 12px 0 0; }
  .hero-wrap { border-radius: 14px; }
  .hero-photo {
    height: 380px !important;
    min-height: 380px !important;
    border-radius: 14px 14px 0 0;
  }
  .hero-photo .ba-slider {
    height: 380px !important;
    min-height: 380px !important;
  }
  .ba-after, .ba-before { min-height: 380px; }
  .ba-btn { width: 44px; height: 44px; }
  .hero-card {
    padding: 24px 18px 22px;
    gap: 16px;
    border-radius: 0 0 14px 14px;
  }
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 15px; }
  .hero-quote-btn { width: 100%; text-align: center; font-size: 20px; padding: 15px; letter-spacing: 0.8px; }
  .hero-call-btn { width: 100%; text-align: center; justify-content: center; font-size: 15px; padding: 13px; }
  .hero-blurb { font-size: 13px; }
  .hero-icons { gap: 12px; }
  .hero-icon-item svg { width: 36px; height: 36px; }
  .hero-icon-item span { font-size: 10px; }

  /* Sections spacing */
  .section-services,
  .section-gallery,
  .section-how,
  .section-reviews,
  .section-quote,
  .section-zone { padding: 56px 0; }

  .section-heading { font-size: 38px; }
  .section-sub { font-size: 16px; margin-bottom: 32px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-photo,
  .card-slider,
  .card-slider .ba-after,
  .card-slider .ba-before,
  .service-photo-placeholder {
    height: 350px !important;
    min-height: 350px !important;
  }

  /* Zone orange section */
  .zone-wrap { grid-template-columns: 1fr; gap: 32px; }
  .zone-stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-num { font-size: 42px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item img { height: 190px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-wide img { height: 220px; }

  /* How it works */
  .how-steps { flex-direction: column; gap: 16px; }
  .how-arrow { display: none; }
  .how-step { padding: 28px 20px; }
  .how-cta { flex-direction: column; align-items: stretch; }
  .how-cta .btn-quote,
  .how-cta .btn-call { text-align: center; justify-content: center; width: 100%; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-header { gap: 12px; margin-bottom: 32px; }

  /* Quote form section */
  .quote-wrap { grid-template-columns: 1fr; gap: 32px; }
  .quote-text .left-heading { font-size: 38px; }
  .quote-text p { font-size: 16px; }
  .quote-form-box { padding: 26px 20px; }
  .btn-submit { font-size: 20px; padding: 14px; }
  /* Extra bottom padding inside form section for sticky bar clearance */
  .section-quote { padding-bottom: 100px; }

  /* Footer */
  .footer-wrap { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Sticky bar show */
  .sticky-mobile-bar { display: flex; }
}

/* Small phones (iPhone SE, 375px wide and under) */
@media (max-width: 430px) {
  .section-heading { font-size: 32px; }
  .hero-title { font-size: 38px; }

  .hero-card { padding: 22px 16px 20px; gap: 14px; }
  .hero-reviews { flex-direction: column; }
  .hero-icons { justify-content: space-between; }

  /* Gallery single column on tiny screens */
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item img { height: 220px; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item-wide img { height: 240px; }

  .zone-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-num { font-size: 36px; }
  .zone-tags span { font-size: 13px; padding: 5px 12px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .footer-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-links:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }

  .quote-form-box { padding: 20px 14px; }
  .quote-text .left-heading { font-size: 34px; }

  /* Sticky bar bigger tap targets */
  .smb-call, .smb-quote { padding: 14px; font-size: 15px; }
}
