/* ================= GLOBAL ================= */
:root {
  --primary-green: #69ad3c;
}

body {
  overflow-x: hidden !important;
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #e8f6e9;
}

/* ================= HEADER ================= */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.main-header .container-fluid {
  padding-left: 48px;
  padding-right: 48px;
}

/* NAV LINKS */
.main-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  margin: 0 14px;
  white-space: nowrap;
}

/* HEADER BUTTONS (COMMON) */
.main-header .btn {
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  line-height: 1;
}

/* CALL NOW BUTTON (OUTLINE – SAME AS FIGMA) */
.call-btn {
  color: var(--primary-green);
  border-radius: 60px;
  border: 3px solid var(--GREENM, #69ad3c);
  color: var(--GREENM, #69ad3c) !;
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.call-btn img {
  width: 14px;
  margin-right: 6px;
}

/* ESTIMATE BUTTON */
.main-header .btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  background-position: bottom;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom; /* 👈 YEH MAIN FIX */
  z-index: -2;
}

/* DARK OVERLAY (FIGMA-LIKE) */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* HERO CONTENT */
.hero-title {
  color: #ffffff;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-text {
  color: #e6e6e6;
  font-size: 22px;
  max-width: 600px;
  margin-bottom: 36px;
}

/* HERO CTA */
.hero-section .btn {
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 999px;
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* DESKTOP PAR MOBILE MENU HIDE */
.mobile-nav {
  display: none;
}

/* ================= TRUST SECTION ================= */
.trust-section {
  padding: 5% 0% !important;
  background: transparent;
}

/* ================= TRUST CARDS ================= */

.trust-card {
  background: #17412a;
  border-radius: 26px;
  padding: 30px;
  height: 100%;
  min-height: 150px;

  display: flex;
  align-items: center;
  gap: 20px;
}

/* ICON */
.trust-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

/* TEXT */
.trust-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-text h3 {
  font-size: 50px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}

.trust-text p {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
}

.trust-text p strong {
  font-weight: 700;
}
/* ================= COMMON ================= */
.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #17412a;
  margin-bottom: 18px;
}

.section-text {
  font-size: 20px;
  color: #17412a;
  max-width: 460px;
}

/* ================= SERVICE CARDS ================= */
/* ================= SECTION ================= */
.outdoor-section {
  padding: 80px 0;
  background: #ffffff;
}

/* RIGHT TEXT (outdoor section) */
.outdoor-section .section-title {
  font-weight: 800;
  color: #17412a;
  margin-bottom: 18px;
}

.outdoor-section .section-text {
  font-size: 20px;
  color: #17412a;
  max-width: 460px;
}

/* SECTION */
.services-section {
  background: #f4fbf4;
}

/* CARD BASE */
.service-card {
  height: 350px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
  transition: 0.4s ease;
}

/* CONTENT */
.service-content {
  position: relative;
  color: #fff;
  padding: 30px 16px;
  transform: translateY(40px);
  transition: 0.4s ease;
}

.service-content h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 18px;
  opacity: 0;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.service-content a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.service-card:hover::before {
  background: rgba(0, 0, 0, 0.75);
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-card:hover p,
.service-card:hover a {
  opacity: 1;
}

/* BACKGROUND IMAGES */
.bg-card-1 {
  background-image: url("/Assets/card\ 1.png"); /* Tree */
}

.bg-card-2 {
  background-image: url("Assets/card\ 3.png"); /* Stone */
}

.bg-card-3 {
  background-image: url("Assets/card\ 2.png"); /* Plant */
}

/* RIGHT TEXT */
.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #17412a;
  margin-bottom: 18px;
}

.section-text {
  font-size: 20px;
  color: #3a3a3a;
  max-width: 460px;
}
.tree-care-section {
  background: #eef8ee;
  padding: 100px 0px;
}

.round-about {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -100px;
  height: auto;
  width: auto;
}

/* LEFT */
.tree-title {
  font-size: 64px;
  font-weight: 800;
  color: #17412a;
  margin-bottom: 20px;
}

.tree-desc {
  font-size: 22px;
  color: #3e3e3e;
  max-width: 500px;
  margin-bottom: 28px;
}

/* PILLS */
.tree-list {
  list-style: none;
  padding: 0;
}

.tree-list li {
  display: block;
  background: #dff1df;
  color: #17412a;
  padding: 16px 20px;
  border-radius: 999px;
  font-size: 22px;
  margin-bottom: 14px;
  text-align: center;
}

/* RIGHT IMAGE */
.tree-image-wrap {
  position: relative;
  display: inline-block;
}

.tree-image {
  width: 360px;
  height: 418px;
  object-fit: cover;
  border-radius: 40px;
  position: relative;
  z-index: 2;
}

/* GREEN CIRCLE */
.green-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 18px solid #6bb13f;
  border-radius: 50%;
  top: -20px;
  right: -20px;
  z-index: 1;
}
.tree-list {
  list-style: none;
  padding: 0;
}

.circleMobMenu {
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 100px;
}

.tree-list .pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
  margin-right: 6px;
  font-weight: 500;
  color: #153b27 !important; /* TEXT COLOR SAME FOR ALL */
}

/* BACKGROUND COLORS – SEQUENCE WISE */
.pill-trimming {
  background: #78c94657 !important;
}

.pill-removal {
  background: #c99b4659 !important;
}

.pill-stump {
  background: #46c5c94d !important;
}

.pill-clearing {
  background: #78c94657 !important;
}
/* MAIN SECTION */
.stone-emergency-section {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 800px;

  border-bottom-left-radius: 30 0px; /* 👈 curve */
  border-radius: 0px 624px 0 624px;
  background:
    linear-gradient(0deg, rgba(27, 27, 27, 0) 0%, #1b1b1b 100%),
    url("./Assets/Group 47.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
}

/* TITLES */
.stone-title {
  font-size: 60px;
  font-weight: 800;
  color: #f6f1c7;
}

.stone-desc {
  font-size: 22px;
  max-width: 580px;
  color: #d1d1d1;
}

/* CARDS */
.stone-card {
  position: relative;
  overflow: hidden;
  border-radius: 56px;
  padding: 47px 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 21.9%, rgba(0, 0, 0, 0.94) 100%),
    url("./Assets/custom.png") center / cover no-repeat,
    #ffbfbf;
  height: 500px;
  display: flex;
  align-items: end;
  justify-content: start;
  text-align: start;
}

.stone-card2 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 21.9%, rgba(0, 0, 0, 0.94) 100%),
    url("./Assets/concrete-stone-card.png") center / cover no-repeat,
    #ffbfbf;
}

.stone-card3 {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 21.9%, rgba(0, 0, 0, 0.94) 100%),
    url("./Assets/fence-stone-card.png") center / cover no-repeat,
    #ffbfbf;
}

.stone-card img {
  width: 100%;
  display: block;
}

.stone-card span {
  left: 20px;
  bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* EMERGENCY */
.emergency-title {
  font-size: 56px;
  font-weight: 800;
  color: #f6f1c7;
}

.emergency-desc {
  max-width: 580px;
  font-size: 22px;
  color: #d1d1d1;
}

/* BUTTONS */
.emergency-call-btn {
  border: 2px solid #f6f1c7;
  color: #f6f1c7;
  padding: 12px 22px;
  border-radius: 999px;
}

.emergency-estimate-btn {
  background: #f6f1c7;
  color: #17412a;
  padding: 12px 26px;
  border-radius: 999px;
}
/* WHY CHOOSE LOPEZ SECTION */

.why-lopez-section {
  padding: 80px 0;
}

.why-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: #0b3d2e;
}

.why-subtitle {
  font-size: 2.5rem;
  font-weight: 500;
  color: #0b3d2e;
  margin-top: 20px;
}

.why-card {
  background: #dff3d6;
  border-radius: 42px;
  padding: 45px 35px;
  height: 235px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-card h5 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #0b3d2e;
  margin-bottom: 10px;
}

.why-card p {
  color: #0b3d2e;
  margin: 0;
  font-size: 1.15rem;
}
/* BASE */
.serving-section {
  overflow: hidden;
  position: relative;
}

/* HERO AREA */
.serving-hero {
  background: url("./Assets/Group 48.png") center / 100% 100% no-repeat;
  padding: 90px 0 0;
  position: relative;
  text-align: center;
  min-height: 1400px;
}

.serving-hero h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #173f2a;
}

.serving-hero p {
  color: #2f4f3b;
  font-size: 22px;
  margin: 20px 0 30px;
}

.hero-btn {
  background: #6bb63f;
  border: none;
  padding: 18px 40px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 18px;
}

/* CITY IMAGE – NO RADIUS */
.city-img {
  width: 100%;
  display: block;
}

/* GREEN CURVED BASE */
.serving-bottom {
  padding: 50px 0 250px;
  position: relative;
  z-index: 1;
  margin-top: -500px;
}

/* STEP CARDS */
.step-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 22px;
  position: relative;
  z-index: 2;
}

.step-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY TEXT */
.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;
}

/* RIGHT CONTENT */
.transform-title {
  font-size: 4rem;
  font-weight: 700;
  color: #f3f7e8;
}

.transform-text {
  color: #d7e4cf;
  margin-top: 15px;
  font-size: 1.6rem;
}

.hero-contact {
  padding: 120px 0;
  color: #e7f2e9;
}

/* LEFT SIDE */
.hero-left h1 {
  font-size: 4.5rem;
  font-weight: 700;
  color: #1f4f36;
  margin-top: 30px;
}

.hero-desc {
  color: #153b27;
  font-size: 22px;
  margin: 20px 0;
  max-width: 520px;
}

.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;
}

.hero-btn {
  background: #7ac143;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}
.hero-btn,
.hero-btn:hover,
.hero-btn:focus {
  background-color: #69ad3c !important;
  color: #fff !important;
}

/* RIGHT FORM */
/* WRAPPER */
.estimate-form-exact {
  background: #000;
  color: #fff;
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 20px 50px;
  border-radius: 20px;
}

/* HEADING */
.estimate-form-exact h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.estimate-form-exact h2 span {
  color: #7ac143;
}

/* FIELDS */
.field {
  margin-bottom: 26px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #ffffff;
}

/* LINE INPUTS — EXACT */
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid #d8eef7; /* light blue line */
  padding: 4px 0;
  color: #fff;
  font-size: 1rem;
}

.field textarea {
  resize: none;
}

.field input:focus,
.field textarea:focus {
  outline: none;
}

/* BUTTON */
.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;
}

.btn:hover {
  background-color: #69ad3c !important;
}

/* =====================
   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);
}

/* 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;
}

@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;
  }

  /*Mobile Menu*/
  /* ================= MOBILE MENU ================= */
  .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: var(--primary-green);
    border-radius: 2px;
  }

  .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;
  }

  .mobile-estimate-btn {
    display: block;
    padding: 18px;
    background: #f6f1c7;
    color: #17412a;
    border-radius: 999px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
  }

  /* Dropdown hidden on mobile */
  .dropdown-menu-custom {
    display: none !important;
  }

  /* HERO SECTION */
  .hero-section {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px !important;
    text-align: center;
  }

  .hero-bg {
    object-position: center bottom;
  }

  /* HERO TITLE */
  .hero-title {
    font-size: 36px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  /* HERO TEXT */
  .hero-text {
    font-size: 16px !important;
    max-width: 340px;
    margin: 0 auto 26px;
  }

  /* CTA BUTTON */
  .hero-section .btn {
    width: 100%;
    max-width: 340px;
    padding: 18px 24px;
    font-size: 16px;
    border-radius: 999px;
  }

  /* Cards Section */
  .trust-section {
    padding: 32px 0;
  }

  .trust-card {
    background: #17412a;
    border-radius: 22px;
    padding: 20px 18px;
    min-height: 110px;

    display: flex;
    align-items: center;
    gap: 14px;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .trust-text {
    text-align: left;
  }

  .trust-text h3 {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
  }

  .trust-text p {
    font-size: 14px;
    line-height: 1.2;
    margin: 0;
  }

  /* Outdoor Section */

  /* SECTION FLOW FIX */
  /* STEP 1: ROW KO NORMAL REHNE DO */
  .services-section .row.align-items-center {
    flex-direction: column;
  }

  /* STEP 2: RIGHT CONTENT KO TOP PE LE AO */
  .services-section .row.align-items-center > .col-lg-5 {
    order: -1;
    width: 100%;
    text-align: center;
    padding-left: 0 !important;
    margin-bottom: 36px;
  }

  /* STEP 3: LEFT CARDS NICHE */
  .services-section .row.align-items-center > .col-lg-7 {
    order: 2;
    width: 100%;
  }

  /* TEXT SCALE */
  .services-section .section-title {
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .services-section .section-text {
    font-size: 16px !important;
    max-width: 340px;
    margin: 0 auto;
  }

  /* STEP 4: FORCE SINGLE CARD PER ROW */
  .services-section .col-12,
  .services-section .col-md-6,
  .services-section .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* CARD LOOK */
  .service-card {
    height: 280px;
    border-radius: 32px;
  }

  /* CONTENT ANIMATION */
  .service-content {
    padding: 26px 22px;
    transform: translateY(56px);
    transition: 0.35s ease;
  }

  /* DEFAULT STATE */
  .service-content p,
  .service-content a {
    opacity: 0;
    pointer-events: none;
  }

  /* HOVER / TAP */
  .service-card:hover .service-content,
  .service-card:active .service-content {
    transform: translateY(0);
  }

  .service-card:hover p,
  .service-card:hover a,
  .service-card:active p,
  .service-card:active a {
    opacity: 1;
    pointer-events: auto;
  }

  .tree-care-section {
    padding: 80px 0 0;
    text-align: center;
  }

  /* FORCE SINGLE COLUMN */
  .tree-care-section .row {
    flex-direction: column;
  }

  /* TEXT FIRST */
  .tree-care-section .col-lg-6:first-child {
    order: 1;
  }

  /* IMAGE LAST */
  .tree-care-section .col-lg-6:last-child {
    order: 2;
    margin-top: 60px;
  }

  /* HEADING */
  .tree-title {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f3b27;
    margin-bottom: 20px;
  }

  /* DESCRIPTION */
  .tree-desc {
    font-size: 16px !important;
    max-width: 340px;
    margin: 0 auto 40px;
    color: #0f3b27;
  }

  /* PILLS STACK */
  .tree-list {
    padding: 0;
    margin: 0 auto;
    max-width: 360px;
  }

  .tree-list li {
    display: block;
    width: 100%;
    margin: 0 0 14px;
    padding: 16px 18px;
    font-size: 14px;
    border-radius: 999px;
    text-align: left;
  }

  /* IMAGE WRAP */
  .tree-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }

  /* IMAGE EXACT LOOK */
  .tree-image {
    width: 92%;
    height: auto;
    border-radius: 48px;
    object-fit: cover;
  }

  /* REMOVE GREEN RING ON MOBILE */
  .green-ring {
    display: none;
  }

  .stone-emergency-section {
    padding-top: 90px;
    padding-bottom: 0;
    text-align: center;
  }

  /* DARK CURVED BACKGROUND IMAGE */
  .stone-emergency-section .section-bg {
    height: 120%;
    object-position: center top;
  }

  /* HEADING */
  .stone-title {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 18px;
    color: #f6f1c7;
  }

  /* DESCRIPTION */
  .stone-desc {
    font-size: 16px;
    max-width: 330px;
    margin: 0 auto 40px;
    color: #d1d1d1;
  }

  /* FORCE CARDS STACK */
  .stone-emergency-section .row.justify-content-center {
    flex-direction: column;
    gap: 26px;
  }

  .stone-emergency-section .col-md-4 {
    width: 100%;
  }

  /* CARD IMAGE */
  .stone-card {
    border-radius: 28px;
    overflow: hidden;
  }

  .stone-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 28px;
  }

  /* CARD LABEL */
  .stone-card span {
    left: 18px;
    bottom: 16px;
    font-size: 14px;
  }

  /* EMERGENCY BLOCK */
  .emergency-block {
    margin-top: 80px;
    padding-bottom: 140px;
  }

  .emergency-title {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .emergency-desc {
    font-size: 16px;
    max-width: 330px;
    margin: 0 auto 30px;
  }

  /* BUTTONS STACK */
  .emergency-block .d-flex {
    flex-direction: column;
  }

  .emergency-call-btn,
  .emergency-estimate-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    font-size: 14px;
  }

  .why-lopez-section {
    padding: 80px 0 90px;
  }

  /* HEADINGS */
  .why-title {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #153b27;
  }

  .why-subtitle {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #153b27;
  }

  /* FORCE STACK LAYOUT */
  .why-lopez-section .row.align-items-center {
    flex-direction: column;
  }

  /* CARDS STACK */
  .why-lopez-section .col-md-6 {
    width: 100%;
  }

  .why-card {
    background: #dff3d6;
    border-radius: 32px;
    padding: 60px 40px !important;
    text-align: center;
  }

  .why-card h5 {
    font-size: 26px !important;
    margin-bottom: 14px;
    color: #153b27;
  }

  .why-card p {
    font-size: 16px !important;
    line-height: 1.5;
    color: #153b27;
  }

  /* GAP BETWEEN CARDS */
  .why-lopez-section .row.g-4 {
    row-gap: 28px;
  }

  .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;
    color: #153b27;
  }

  .serving-hero p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
    color: #153b27;
  }

  .serving-hero .hero-btn {
    padding: 16px 34px;
    font-size: 16px;
    border-radius: 999px;
  }

  /* CITY IMAGE — NO OVERFLOW */
  .city-img {
    display: block;
    width: 100%;
  }

  /* ---------- GREEN CURVED AREA ---------- */

  /* OUTER WRAPPER */
  .serving-section {
    overflow-x: hidden;
  }

  /* GREEN CURVED CONTAINER (MASTER) */
  .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;
  }


  /* FORCE STACK ORDER */
  .serving-bottom .row {
    flex-direction: column;
  }

  .serving-bottom .col-lg-7,
  .serving-bottom .col-lg-5 {
    width: 100%;
  }

  /* TEXT BLOCK */
  .transform-section {
    padding-top: 100px; /* curve ke baad space */
    padding-bottom: 80px;
    text-align: center;
  }

  .transform-title {
    margin-top: 0 !important;
    margin-bottom: 12px;
  }

  .transform-text {
    margin-top: 0 !important;
    margin-bottom: 40px; /* cards se gap */
  }

  /* STEP CARDS — INSIDE GREEN */
  .step-card {
    height: 250px;
    border-radius: 28px;
    overflow: hidden;
    margin-top: 0;
  }

  .step-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    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;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
  }

  .step-overlay p {
    font-size: 14px;
    line-height: 1.4;
    color: #ddd;
  }

  /* SPACING BETWEEN CARDS */
  .serving-bottom .row.g-4 {
    row-gap: 28px;
  }
  /* PURE SECTION CONTROL */
  .serving-bottom .row {
    display: flex;
    flex-direction: column;
  }

  /* HEADING + TEXT COLUMN — ALWAYS FIRST */
  .serving-bottom .col-lg-5 {
    order: 1 !important;
    margin-bottom: 40px;
    text-align: center;
  }

  /* CARDS COLUMN — ALWAYS AFTER TEXT */
  .serving-bottom .col-lg-7 {
    order: 2 !important;
  }

  /* TITLE FIX */
  .transform-title {
    margin-top: 0 !important;
    margin-bottom: 12px;
  }

  .transform-text {
    margin-bottom: 32px;
  }

  .hero-contact {
    padding: 90px 20px 100px;
    text-align: center;
  }

  /* LOGO */
  .hero-logo {
    margin: 0 auto 28px;
    display: block;
  }

  /* MAIN HEADING */
  .hero-left h1 {
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  /* DESCRIPTION */
  .hero-desc {
    font-size: 16px !important;
    line-height: 1.6;
    margin: 0 auto 30px;
  }

  /* INFO BLOCK */
  .hero-info {
    margin-bottom: 28px;
  }

  .hero-info p {
    font-size: 14px;
    margin: 4px 0;
  }

  /* GOOGLE REVIEWS */
  .hero-google {
    justify-content: center;
    margin-bottom: 32px;
  }

  /* CTA BUTTON */
  .hero-left .hero-btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 40px;
    display: block;
  }

  /* ================= FORM ================= */

  .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;
  }

  /* FORM FIELDS */
  .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;
  }

  /* SUBMIT BUTTON */
  .estimate-form-exact button {
    width: 100%;
    max-width: 300px;
    margin: 50px auto 0;
    display: block;
  }

  .stone-emergency-section {
    background: url("./Assets/EmerBg.png") center / 100% 100% no-repeat;
    border-radius: 0 200px 0px 0px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 15px !important;
    max-width: 300px;
  }

  /* Cards Section */
  .trust-card {
    padding: 18px 16px;
    min-height: 100px;
    border-radius: 20px;
  }

  .trust-icon {
    width: 30px;
    height: 30px;
  }

  .trust-text h3 {
    font-size: 24px;
  }

  .trust-text p {
    font-size: 15px !important;
  }

  /* Outdoor Section */

  .services-section .section-title {
    font-size: 38px;
  }

  .services-section .section-text {
    font-size: 15px !important;
  }

  .service-card {
    height: 260px;
    border-radius: 28px;
  }

  .tree-title {
    font-size: 42px;
  }

  .tree-desc {
    font-size: 15px !important;
  }

  .tree-image {
    border-radius: 44px;
  }

  .stone-title {
    font-size: 34px;
  }

  .stone-card img {
    height: 220px;
  }

  .emergency-title {
    font-size: 30px;
  }

  .emergency-block {
    padding-bottom: 160px;
  }

  .why-title {
    font-size: 50px;
    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: 38px;
  }

  .transform-title {
    font-size: 34px;
  }

  .serving-bottom {
    padding-bottom: 200px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
  }

  .step-card {
    height: 230px;
  }

  .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;
}
