/* =====================
   GLOBAL
===================== */
* {
  font-family: "Inter", sans-serif;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: #f2f2ef;
}

/* =====================
   HEADER (matches index.html)
===================== */
.main-header {
  z-index: 10;
}

/* NAV LINKS */
.main-nav {
  gap: 34px;
}

.main-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #6ea04b;
  text-decoration: none;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #8fd14f;
}

/* HEADER BUTTONS */
.main-header .btn {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  line-height: 1;
}

.border-radius-100 {
  border-radius: 200px 30px 200px 30px;
}

.call-btn {
  border: 3px solid #69ad3c;
  color: #69ad3c;
  font-weight: 600;
}

.call-btn img {
  width: 14px;
  margin-right: 6px;
}

.main-header .btn-success {
  background-color: #69ad3c;
  border-color: #69ad3c;
}

/* MOBILE NAV — HIDDEN BY DEFAULT */
.mobile-nav {
  display: none;
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
  padding: 200px 0 0;
  background-color: #f2f2ef;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  color: #1f4d2e;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #2f5b3c;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btn {
  background: #7ac143;
  color: #fff;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-decoration: none;
}

.hero-btn:hover,
.hero-btn:focus {
  background-color: #7ac143 !important;
  color: #fff !important;
}

/* HERO IMAGE */
.hero-section .col-lg-6.position-relative {
  align-self: flex-start !important;
  padding-top: 0 !important;
}

.hero-section .col-lg-6.position-relative img.img-fluid {
  max-height: 560px;
  width: 115%;
  object-fit: cover;
}

/* Hero image focal-point adjustments */
img.border-radius-100[src*="pp.jpg"]     { object-position: center 30%; }
img.border-radius-100[src*="x1.jpeg"]    { object-position: center 20%; }
img.border-radius-100[src*="tre4.jpeg"]  { object-position: center 25%; }
img.border-radius-100[src*="g1.jpeg"]    { object-position: center 35%; }
img.border-radius-100[src*="q1.jpeg"]    { object-position: center 40%; }
img.border-radius-100[src*="tt1.jpeg"]   { object-position: center 55%; }
img.border-radius-100[src*="n2.jpeg"]    { object-position: center 30%; }
img.border-radius-100[src*="tre3.jpeg"]  { object-position: center 25%; }

.hero-image-wrap {
  width: 460px;
  height: 620px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-green-ring {
  position: absolute;
  width: 150px;
  bottom: 25px;
  left: 20px;
  z-index: 1;
}

/* =====================
   HAZARD SECTION
===================== */
.hazard-section {
  padding: 60px 0 80px;
}

.hazard-img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  display: block;
  margin-left: -16%;
}

.hazard-section .lawn-section-img {
  width: 100% !important;
  height: 580px !important;
  object-fit: cover !important;
  border-radius: 28px !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.hazard-content {
  padding-left: 0;
}

.hazard-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1f4d2e;
  margin-bottom: 24px;
}

.hazard-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #2f5b3c;
  max-width: 520px;
  margin-bottom: 34px;
}

.hazard-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pill {
  display: inline-block;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #1f4d2e;
}

.pill-1 {
  background: #ddf0da;
}
.pill-2 {
  background: #e9eed9;
}
.pill-3 {
  background: #dff3ef;
}

.hazard-btn {
  background: #6ea04b;
  color: #ffffff;
  padding: 18px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-decoration: none;
}

/* =====================
   SERVICES CARDS SECTION
===================== */
.services-section {
  padding: 50px 0 !important;
}

.services-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #1f4d2e;
}

.service-card {
  position: relative;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 10%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
}

.service-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  z-index: 2;
  color: #ffffff;
}

.service-overlay h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* =====================
   CLEANER SECTION
===================== */
.cleaner-section {
  padding: 140px 0;
  background-image: url("./Assets/Rectangle\ 96.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cleaner-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  color: #f4f3d3;
  margin-bottom: 20px;
}

.cleaner-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #e7e6c8;
  margin-bottom: 36px;
}

.cleaner-call {
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.cleaner-btn {
  background: #f4f3d3;
  color: #2e4f32;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.cleaner-btn:hover {
  color: white;
}

/* =====================
   WHY CHOOSE LOPEZ
===================== */
.why-lopez-section {
  padding: 80px 0;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0b3d2e;
}

.why-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  color: #0b3d2e;
  margin-top: 20px;
}

.why-card {
  background: #dff3d6;
  border-radius: 28px;
  padding: 35px 30px;
  height: 100%;
}

.why-card h5 {
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 10px;
}

.why-card p {
  color: #0b3d2e;
  margin: 0;
  font-size: 1.15rem;
}

/* =====================
   SERVING SECTION
===================== */
.serving-section {
  overflow: hidden;
  position: relative;
}

.serving-hero {
  background: url("./Assets/Group 48.png") center / 100% 100% no-repeat;
  min-height: 1400px;
  padding: 90px 0 0;
  position: relative;
  text-align: center;
}

.serving-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #173f2a;
}

.serving-hero p {
  color: #2f4f3b;
  margin: 15px 0 25px;
}

.city-img {
  width: 100%;
  display: block;
}

.serving-bottom {
  padding: 50px 0 250px;
  position: relative;
  z-index: 1;
  margin-top: -500px;
}

.step-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 22px;
  z-index: 2;
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.step-overlay h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-overlay p {
  color: #ddd;
  font-size: 0.85rem;
  margin: 0;
}

.transform-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #f3f7e8;
}

.transform-text {
  color: #d7e4cf;
  margin-top: 15px;
  font-size: 1.6rem;
}

/* =====================
   CONTACT / FORM SECTION
===================== */
.hero-contact {
  padding: 120px 0;
  color: #e7f2e9;
}

.hero-left h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #1f4f36;
  margin-top: 30px;
}

.hero-logo {
  max-width: 160px;
}

.hero-info p {
  margin: 4px 0;
  color: #3a3938;
  font-size: 22px;
}

/* CONTACT INFO ROWS WITH ICONS */
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.info-row i {
  color: #153b27;
  font-size: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

.info-row p {
  margin: 2px 0;
}

.hero-google {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.hero-google span {
  color: #000000;
  font-weight: 600;
}

.estimate-form-exact {
  background: #000;
  color: #fff;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 20px 50px;
  border-radius: 20px;
}

.estimate-form-exact h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.estimate-form-exact h2 span {
  color: #7ac143;
}

.field {
  margin-bottom: 26px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid #d8eef7;
  padding: 4px 0;
  color: #fff;
  font-size: 1rem;
}

.field textarea {
  resize: none;
}

.field input:focus,
.field textarea:focus {
  outline: none;
}

.estimate-form-exact button {
  display: block;
  margin: 40px auto 0;
  background: #7ac143;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.circleMobMenu {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100px;
}

/* =====================
   DROPDOWN NAV
===================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  cursor: pointer;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 14px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 10px 24px;
  font-size: 14px !important;
  font-weight: 500;
  color: #1f4d2e !important;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.dropdown-menu-custom a:hover {
  background: #eef8ee;
  color: #69ad3c !important;
}

/* =====================
   HOVER ANIMATIONS
===================== */
.btn {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 173, 60, 0.3);
}

.why-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.step-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.stone-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.stone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.trust-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* =====================
   GALLERY PAGE
===================== */
.gallery-section {
  padding: 60px 0 100px;
}

.gallery-section .services-title {
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* =====================
   CONTACT PAGE
===================== */
.contact-info-section {
  padding: 60px 0 100px;
}

.contact-info-card {
  background: #dff3d6;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card h5 {
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.contact-info-card p {
  color: #0b3d2e;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =====================
   ESTIMATE FORM SECTION
===================== */
.estimate-section {
  padding: 80px 0 100px;
}

.estimate-form-wrapper {
  background: #fff;
  border-radius: 28px;
  padding: 60px 50px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.estimate-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1f4d2e;
  text-align: center;
  margin-bottom: 12px;
}

.estimate-heading span {
  color: #7ac143;
}

.estimate-subtext {
  text-align: center;
  color: #2f5b3c;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.form-field {
  margin-bottom: 8px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f4d2e;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #dce8d4;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #1f4d2e;
  background: #f8faf6;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #7ac143;
}

.form-field textarea {
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f4d2e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.contact-method-options {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}

.radio-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #2f5b3c !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #7ac143;
}

.estimate-submit {
  padding: 16px 48px !important;
  font-size: 16px !important;
}

/* Mobile submenu in mobile nav */
.mobile-submenu {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  display: none;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu li {
  margin-bottom: 12px !important;
}

.mobile-submenu a {
  font-size: 18px !important;
  color: #b8d4a8 !important;
}

/* =====================================================
   MOBILE RESPONSIVE — max-width: 991px
===================================================== */
@media (max-width: 991px) {
  /* ========== HEADER ========== */
  .header-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .mobile-estimate {
    font-size: 14px;
    padding: 10px 18px;
    white-space: nowrap;
  }

  /* HAMBURGER */
  .mobile-menu {
    width: 26px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 12px;
  }

  .mobile-menu span {
    height: 3px;
    background: #69ad3c;
    border-radius: 2px;
  }

  /* MOBILE NAV OVERLAY */
  .mobile-nav {
    position: fixed;
    inset: 0;
    background: #17412a;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.45s ease,
      opacity 0.35s ease,
      visibility 0.45s ease;
  }

  .mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 42px;
  }

  .close-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f6f1c7;
    color: #17412a;
    font-size: 22px;
    font-weight: bold;
    border: none;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .mobile-nav-links li {
    margin-bottom: 20px;
  }

  .mobile-nav-links a {
    font-size: 28px;
    font-weight: 600;
    color: #f6f1c7;
    text-decoration: none;
  }

  .mobile-nav-cta {
    margin-top: auto;
    padding-bottom: 30px;
  }

  .mobile-call-btn {
    display: block;
    padding: 16px;
    border: 2px solid #f6f1c7;
    color: #f6f1c7;
    border-radius: 999px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-estimate-btn {
    display: block;
    padding: 18px;
    background: #f6f1c7;
    color: #17412a;
    border-radius: 999px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }

  /* ========== HERO SECTION ========== */
  .hero-section {
    padding: 170px 0 60px;
    text-align: center;
  }

  .hero-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 340px;
    margin: 0 auto 26px;
  }

  .hero-section .hero-btn {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 16px;
    text-align: center;
  }

  .hero-section .col-lg-6.position-relative {
    margin-top: 40px;
  }

  .hero-section .col-lg-6.position-relative img {
    max-width: 80%;
    max-height: 400px;
    object-fit: cover;
  }

  /* ========== HAZARD SECTION ========== */
  .hazard-section {
    padding: 60px 0;
  }

  .hazard-section .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hazard-section .row {
    flex-direction: column;
  }

  .hazard-img {
    width: 100%;
    height: auto;
    margin-left: 0;
    border-radius: 28px;
    object-fit: cover;
    margin-bottom: 40px;
  }

  .hazard-content {
    text-align: center;
    padding-left: 0;
  }

  .hazard-content h2 {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .hazard-content p {
    font-size: 16px;
    max-width: 340px;
    margin: 0 auto 28px;
  }

  .hazard-points {
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
  }

  .pill {
    font-size: 13px;
    padding: 12px 18px;
    text-align: left;
    width: 100%;
    max-width: 380px;
  }

  .hazard-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 24px;
    text-align: center;
  }

  /* ========== SERVICES CARDS SECTION ========== */
  .services-section {
    padding: 60px 0 !important;
  }

  .services-section .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-title {
    font-size: 38px;
    margin-bottom: 30px;
  }

  .services-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-card {
    height: 320px;
    border-radius: 28px;
  }

  .service-overlay {
    bottom: 22px;
    left: 22px;
    right: 22px;
  }

  .service-overlay h3 {
    font-size: 24px;
  }

  .service-overlay p {
    font-size: 14px;
  }

  /* ========== CLEANER SECTION ========== */
  .cleaner-section {
    padding: 80px 0;
    text-align: center;
  }

  .cleaner-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .cleaner-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cleaner-actions {
    flex-direction: column;
    align-items: center;
  }

  .cleaner-call,
  .cleaner-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: block;
  }

  /* ========== WHY CHOOSE LOPEZ ========== */
  .why-lopez-section {
    padding: 80px 0 90px;
  }

  .why-lopez-section .row.align-items-center {
    flex-direction: column;
  }

  .why-title {
    font-size: 40px;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 10px;
  }

  .why-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
  }

  .why-lopez-section .col-md-6 {
    width: 100%;
  }

  .why-card {
    border-radius: 32px;
    padding: 60px 40px;
    text-align: center;
  }

  .why-card h5 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .why-card p {
    font-size: 16px;
    line-height: 1.5;
  }

  .why-lopez-section .row.g-4 {
    row-gap: 28px;
  }

  /* ========== SERVING SECTION ========== */
  .serving-section {
    overflow-x: hidden;
  }

  .serving-hero {
    position: relative;
    background: transparent;
    min-height: 600px;
    padding-bottom: 0;
  }

  .serving-hero h1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .serving-hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
  }

  .serving-hero .hero-btn {
    padding: 16px 34px;
    font-size: 16px;
    border-radius: 999px;
  }

  .serving-bottom {
    background: url('./Assets/new-bg.png') center / 100% 100% no-repeat;
    margin-top: -500px;
    padding: 50px 20px 20px;
    position: relative;
    z-index: -1;
    border-radius: 0px;
    height: 2000px;
    display: flex;
    align-items: end;
  }

  .serving-bottom .row {
    flex-direction: column;
  }

  .serving-bottom .col-lg-7,
  .serving-bottom .col-lg-5 {
    width: 100%;
  }

  .serving-bottom .col-lg-5 {
    order: 1;
    margin-bottom: 40px;
    text-align: center;
  }

  .serving-bottom .col-lg-7 {
    order: 2;
  }

  .serving-bottom .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .transform-title {
    margin-top: 0;
    margin-bottom: 12px;
  }

  .transform-text {
    margin-top: 0;
    margin-bottom: 32px;
  }

  .step-card {
    height: 250px;
    border-radius: 28px;
    overflow: hidden;
  }

  .step-card img {
    border-radius: 28px;
  }

  .step-overlay {
    padding: 22px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.05)
    );
  }

  .step-overlay h6 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .step-overlay p {
    font-size: 14px;
    line-height: 1.4;
  }

  .serving-bottom .row.g-4 {
    row-gap: 28px;
  }

  /* ========== ESTIMATE FORM ========== */
  .estimate-section {
    padding: 60px 0 80px;
  }

  .estimate-form-wrapper {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .estimate-heading {
    font-size: 1.8rem;
  }

  .estimate-subtext {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .contact-method-options {
    gap: 16px;
  }

  .estimate-submit {
    width: 100%;
    max-width: 320px;
  }

  /* ========== HERO CONTACT / ESTIMATE FORM (bottom section) ========== */
  .hero-contact {
    padding: 90px 20px 100px;
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto 28px;
    display: block;
  }

  .hero-left h1 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .hero-contact .hero-desc {
    font-size: 16px !important;
    line-height: 1.6;
    margin: 0 auto 30px;
  }

  .hero-info {
    margin-bottom: 28px;
  }

  .hero-info p {
    font-size: 14px;
    margin: 4px 0;
  }

  .hero-google {
    justify-content: center;
    margin-bottom: 32px;
  }

  .hero-left .hero-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
    display: block;
  }

  .estimate-form-exact {
    max-width: 100%;
    padding: 30px;
    background: #000000;
    border-radius: 20px;
  }

  .estimate-form-exact h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 36px;
  }

  .estimate-form-exact .field {
    margin-bottom: 34px;
  }

  .estimate-form-exact label {
    text-align: left;
    font-size: 14px;
  }

  .estimate-form-exact input,
  .estimate-form-exact textarea {
    font-size: 16px;
    padding: 6px 0;
  }

  .estimate-form-exact button {
    width: 100%;
    max-width: 300px;
    margin: 50px auto 0;
    display: block;
  }

  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 260px;
  }

  /* Dropdown hidden on mobile */
  .dropdown-menu-custom {
    display: none !important;
  }
}

/* =====================================================
   SMALL MOBILE — max-width: 575px
===================================================== */
@media (max-width: 575px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-desc {
    font-size: 15px;
    max-width: 300px;
  }

  .hero-section .col-lg-6.position-relative img {
    max-width: 90%;
    max-height: 340px;
    object-fit: cover;
  }

  .hazard-section {
    padding: 40px 0;
  }

  .hazard-content h2 {
    font-size: 30px;
  }

  .hazard-content p {
    font-size: 15px;
    max-width: 300px;
  }

  .pill {
    font-size: 12px;
    padding: 10px 16px;
  }

  .services-title {
    font-size: 34px;
  }

  .service-card {
    height: 280px;
  }

  .cleaner-section {
    padding: 60px 0;
  }

  .cleaner-title {
    font-size: 30px;
  }

  .why-title {
    font-size: 36px;
    text-align: center;
  }

  .why-card {
    padding: 38px 22px;
    border-radius: 30px;
  }

  .why-card h5 {
    font-size: 21px;
  }

  .why-card p {
    font-size: 15px;
  }

  .serving-hero h1 {
    font-size: 34px;
  }

  .transform-title {
    font-size: 30px;
  }

  .serving-bottom {
    padding-bottom: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
  }

  .step-card {
    height: 230px;
  }

  .estimate-heading {
    font-size: 1.5rem;
  }

  .estimate-form-wrapper {
    padding: 28px 18px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .estimate-form-exact h2 {
    font-size: 26px;
  }

  /* MOBILE: info row icons */
  .info-row {
    justify-content: center;
  }
}

/* ================= FOOTER ================= */
.site-footer {
  background: #153b27;
  padding: 24px 0;
  text-align: center;
}

.site-footer p {
  color: #fff8cd;
  font-size: 14px;
  margin: 0;
}

.site-footer strong {
  color: #69ad3c;
}
