/* ================================
   ALLOBENNE83 — CUSTOM OVERRIDES
================================ */

/* HEADER — smart hide on scroll down, show on scroll up */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.header.hide {
  transform: translateY(-100%);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-logo img {
  height: 40px;
  width: auto;
}

.mobile-close {
  background: var(--gray-100);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.mobile-close span {
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 2px;
  background: var(--secondary);
}

.mobile-close span:first-child { transform: rotate(45deg); }
.mobile-close span:last-child { transform: rotate(-45deg); }

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: auto;
}

.mobile-menu-list li a {
  display: block;
  padding: 12px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary);
  border-radius: 12px;
  transition: all 0.2s;
}

.mobile-menu-list li a:active,
.mobile-menu-list li a:hover {
  background: var(--light);
  color: var(--primary);
  transform: translateX(5px);
}

.mobile-menu-cta {
  background: var(--primary) !important;
  color: white !important;
  margin-top: 1rem;
  text-align: center;
}

.mobile-menu-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.menu-footer-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.mobile-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-100);
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  color: var(--secondary);
  transition: all 0.2s;
  border: 1px solid transparent;
}

.m-contact-btn.primary {
  background: var(--light);
  border-color: var(--primary);
  color: var(--primary);
}

.m-contact-btn .m-icon { font-size: 1.2rem; }
.m-contact-btn .m-badge {
  margin-left: auto;
  background: var(--primary);
  color: white;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 20px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.header.at-top {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: none;
}

/* LOGO — pas de fond noir, juste l'image */
.logo {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

/* PHONES HEADER — Robust hide on mobile */
.phones-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
@media (max-width: 991px) {
  .phones-header {
    display: none !important;
  }
}
.phones-header a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.phones-header a:hover {
  color: var(--primary);
}
.badge-24h {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* HERO — padding top ajusté pour header fixe */
.hero {
  padding-top: 80px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.hero-phones {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s;
}
.hero-phone-link:hover {
  transform: translateX(5px);
  color: var(--primary);
}
.hero-phone-link .icon {
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-phone-link .phone-info {
  display: flex;
  flex-direction: column;
}
.hero-phone-link .number {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-phone-link .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

/* SERVICES BADGES HERO */
.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.4rem 0;
}
@media (max-width: 768px) {
  .hero-services-row {
    justify-content: center;
  }
}
.hsb {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.hsb:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-ctas {
    align-items: center;
    flex-direction: column !important;
  }
  .hero-phones {
    align-items: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
  }
  .hero-title {
    font-size: 1.75rem !important;
  }
  .logo-img {
    height: 40px !important;
  }
  .hsb {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  .estimator-card {
    padding: 1.25rem !important;
  }
  .options-grid {
    gap: 0.5rem;
  }
  .option-btn {
    font-size: 0.82rem;
    padding: 0.75rem 0.5rem;
  }
}
.ville-hero {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    #243460 60%,
    #1a2744 100%
  );
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.ville-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(247, 127, 0, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.ville-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ville-hero-inner {
    grid-template-columns: 1fr;
  }
}
/* Removed empty .ville-hero-text */.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.35);
}
.ville-dept-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(247, 127, 0, 0.2);
  border: 1px solid rgba(247, 127, 0, 0.5);
  color: #ffb347;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.ville-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.ville-hero h1 span {
  color: var(--primary);
}
.ville-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 580px;
}
.ville-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ville-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
}
.stat-card .stat-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.stat-card .stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* CONTENU VILLE — layout 2 colonnes */
.ville-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 960px) {
  .ville-body {
    grid-template-columns: 1fr;
  }
}

/* PROSE VILLE */
.ville-prose h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--secondary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}
.ville-prose h2:first-child {
  margin-top: 0;
}
.ville-prose p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.ville-prose strong {
  color: var(--text);
}
.ville-prose ul {
  margin: 0.8rem 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 600px) {
  .ville-prose ul {
    grid-template-columns: 1fr;
  }
}
.ville-prose ul li {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text);
  border-left: 3px solid var(--primary);
}

/* DÉCHETS GRID */
.dechets-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 1rem 0 1.5rem;
}
.dcheck {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
}
.dcheck.ok {
  background: #f0fff4;
  color: #276749;
  border-left: 3px solid #38a169;
}
.dcheck.no {
  background: #fff5f5;
  color: #9b2c2c;
  border-left: 3px solid #e53e3e;
}

/* TAILLES BENNES TABLE */
.bennes-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.bennes-table thead {
  background: var(--secondary);
  color: #fff;
}
.bennes-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
}
.bennes-table td {
  padding: 11px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-200);
}
.bennes-table tbody tr:hover {
  background: var(--gray-100);
}
.bennes-table tbody tr:last-child td {
  border-bottom: none;
}

/* SIDEBAR STICKY */
.ville-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scard {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.scard:hover {
  box-shadow: var(--shadow-md);
}
.scard-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scard-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.scard-phone:last-of-type {
  border-bottom: none;
}
.scard-phone a {
  font-weight: 800;
  font-size: 1rem;
  color: var(--secondary);
}
.scard-phone a:hover {
  color: var(--primary);
}
.scard .badge-24h {
  margin-left: 0;
}
.tarif-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}
.tarif-line:last-child {
  border-bottom: none;
}
.tarif-line .tprix {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.92rem;
}
.scard .btn {
  width: 100%;
  margin-top: 1rem;
  justify-content: center;
}

/* ZONES TAGS */
.zones-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 0.8rem;
}
.ztag {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* PAGE SERVICES */
.services-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #243460 100%);
  padding: 130px 0 70px;
  text-align: center;
}
.services-hero h1 {
  color: #fff;
}
.services-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-full-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 1px solid var(--gray-200);
}
.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sfc-header {
  background: linear-gradient(135deg, var(--secondary), #243460);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sfc-icon {
  font-size: 2.5rem;
}
.sfc-header h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}
.sfc-body {
  padding: 1.5rem;
}
.sfc-body p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sfc-body ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sfc-body ul li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.sfc-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* VILLES GRID INDEX */
.villes-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}
.vic {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  transition: all 0.25s;
  display: block;
}
.vic:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.vic .vic-dept {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.vic .vic-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--secondary);
}
.vic:hover .vic-name {
  color: var(--primary);
}

/* SERVICES BADGES HERO — Moved to top for consistency */

/* CONTACT FORM AMÉLIORÉ */
.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-title {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}
.contact-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.12);
}
.form-group .required {
  color: var(--primary);
}
.btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* ACCORDION amélioré */
.accordion-item {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.accordion-item.active {
  border-color: var(--primary);
}
.accordion-header {
  background: var(--white);
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover {
  background: var(--gray-100);
}
.accordion-item.active .accordion-header {
  background: var(--light);
  color: var(--primary);
}
.accordion-icon {
  width: 22px;
  height: 22px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.accordion-icon::after {
  content: "+";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.accordion-item.active .accordion-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.active .accordion-content {
  max-height: 500px;
}
.accordion-content p {
  padding: 0 1.3rem 1rem;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}
.accordion-content p + p {
  padding-top: 0;
}

/* FOOTER amélioré */
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-contact a:hover {
  color: var(--primary);
}

/* SECTION FAQ CONTACT LAYOUT */
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* INTRO SECTION */
.intro-section {
  background: var(--white);
  padding: 4rem 0 2rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}
.intro-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--secondary);
  margin-bottom: 1rem;
}
.intro-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.intro-img img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.chiffres-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.chiffre-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-100);
  border-radius: 12px;
}
.chiffre-item .cval {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.chiffre-item .clabel {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .ville-body {
    padding: 2.5rem 1rem;
  }
  .ville-prose ul {
    grid-template-columns: 1fr;
  }
  .bennes-table {
    font-size: 0.8rem;
  }
  .bennes-table th,
  .bennes-table td {
    padding: 8px 10px;
  }
}

/* FINAL MOBILE OVERRIDES FOR OVERFLOW AND HEADER */
@media (max-width: 991px) {
  .phones-header { display: none !important; }
  .logo-img { height: 40px !important; }
  .header-container { padding: 0.5rem 1rem !important; }
  
  html, body { 
    overflow-x: hidden !important; 
    width: 100% !important; 
    position: relative !important;
  }
  
  /* Fix estimator card overflow */
  .estimator-card { 
    max-width: 95vw !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 1rem !important;
  }
  
  .options-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
  }
  
  .option-btn {
    font-size: 0.8rem !important;
    padding: 0.6rem 0.3rem !important;
  }
  
  /* Fix services badges */
  .hero-services-row {
    justify-content: center !important;
    gap: 5px !important;
  }
  .hsb {
    font-size: 0.7rem !important;
    padding: 3px 8px !important;
  }
  
  /* Center hero */
  .hero-content { text-align: center !important; }
  .hero-ctas { align-items: center !important; flex-direction: column !important; }
  .hero-phones { align-items: center !important; }
}

/* Ensure nothing can overflow the viewport width */
* { box-sizing: border-box !important; }

/* STRICT VIEWPORT FIX */
html, body {
  overflow-x: hidden !important;
  width: 100vw !important;
  position: relative !important;
}

@media (max-width: 991px) {
  /* Fix header image size */
  .logo-img { height: 42px !important; }
  
  /* Fix container width to prevent overflow */
  .container, .header-container {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}
