/* ===== Reset helpers ===== */
.landing-page * {
  box-sizing: border-box;
}

.landing-page {
  font-family: Inter-Regular, sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
}

.landing-page section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 43px 60px;
}

.landing-eyebrow {
  display: inline-block;
  border: 1px solid #3cac62;
  color: #3cac62;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 34px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: inset 2.6px 2.6px 5.2px rgba(0, 0, 0, 0.1);
}

.landing-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.landing-section-subtitle {
  font-size: 16px;
  color: #555555;
  max-width: 640px;
  line-height: 1.6;
}

.landing-center {
  text-align: center;
}

.landing-center .landing-section-subtitle {
  margin: 0 auto;
}

/* ===== Base Header Layout (shared with rest of site) ===== */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 60px;
  background-color: #fff;
  position: fixed;
  top: 0px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 100;
  left: 0;
  right: 0;
}

.mm-logo img {
  width: 210px;
  height: auto;
  cursor: pointer;
}

.mm-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mm-link {
  font-family: Inter-Regular, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mm-link:hover {
  color: #36b37e;
}

.mm-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.mm-icon {
  width: 12px;
  height: 12px;
}

.mm-button {
  background-color: #3cac62;
  color: #fff;
  font-family: Inter-Regular, sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mm-button:hover {
  background-color: #2e9e6e;
}

.mm-cta {
  display: none;
}

.vector {
  display: none;
}

@media (max-width: 900px) {
  .mm-header {
    justify-content: space-between;
    padding: 10px 16px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999;
  }

  .mm-nav {
    display: none;
  }

  .vector {
    display: inline-block;
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .mm-logo img {
    width: 175px;
    height: auto;
  }

  .mm-cta {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mm-button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

/* ===== Hero ===== */
.landing-page .landing-hero {
  max-width: 1446px;
  width: 100%;
  margin: 0 auto;
  padding: 91px 0 0;
}

.landing-hero-banner {
  position: relative;
  width: 100%;
}

.landing-hero-banner img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.landing-hero-ctas {
  position: absolute;
  left: 4%;
  bottom: 8%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-btn-primary {
  background-color: #3cac62;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.landing-btn-primary:hover {
  background-color: #2e9e6e;
}

.landing-why-choose-content .landing-btn-primary {
  padding: 11px 36px;
}

.landing-btn-outline {
  background: transparent;
  color: #3cac62;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #3cac62;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.landing-btn-outline:hover {
  background-color: #eafaf1;
}

/* ===== Trusted By ===== */
.landing-trusted {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.landing-trusted-title {
  font-size: 16px;
  color: #555555;
  margin-bottom: 32px;
}

.landing-trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 125px;
}

.landing-trusted-logos img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ===== Our Services ===== */
.landing-page .landing-services {
  background: #f7f9f8;
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.landing-services-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 60px;
}

.landing-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 170px);
  justify-content: center;
  gap: 42px;
  margin-top: 40px;
}

.landing-service-card {
  width: 170px;
  height: 229px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e8ece9;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.landing-service-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.landing-service-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-service-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.2;
  max-width: 138px;
  margin: 0 auto;
  align-items: justify;
}

.landing-view-all {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== Why Choose Us ===== */
.landing-page .landing-why-choose {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  padding-left: 145px;
  padding-right: 90px;
}

.landing-why-choose-visual {
  flex: 1;
  min-width: 320px;
  position: relative;
}

.landing-why-choose-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  display: block;
}

.landing-stat-badge {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), inset 2px 2px 4px rgba(0, 0, 0, 0.1);
  padding: 14px 18px;
  box-sizing: border-box;
}

.landing-stat-badge-label {
  font-size: 12px;
  color: #555555;
  margin-bottom: 4px;
}

.landing-stat-badge-value {
  font-size: 20px;
  font-weight: 700;
  color: #3cac62;
}

.landing-stat-badge.stat-1 {
  top: 0;
  left: -60px;
  width: 119px;
  height: 100px;
  padding: 10px 12px;
}

.landing-stat-badge.stat-1 .landing-stat-badge-label {
  font-size: 11px;
  margin-bottom: 1px;
}

.landing-stat-badge.stat-1 .landing-stat-badge-value {
  font-size: 17px;
}

.landing-stat-badge.stat-2 {
  top: 20px;
  right: -60px;
  width: 150px;
  height: 100px;
}

.landing-stat-badge.stat-2 .landing-stat-badge-label {
  margin-bottom: 10px;
}

.landing-stat-badge.stat-2 .landing-stat-badge-value {
  margin-bottom: 5px;
}

.landing-stat-badge.stat-3 {
  bottom: 0;
  left: -60px;
  width: 152px;
  height: 83px;
}

.landing-stat-badge.stat-4 {
  bottom: 20px;
  right: -40px;
  width: 109px;
  height: 80px;
  padding: 10px 12px;
}

.landing-stat-badge-bars {
  position: absolute;
  right: 18px;
  bottom: 10px;
}

.landing-stat-badge-stars {
  margin-top: 4px;
  display: flex;
  align-items: center;
}

.landing-stat-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.landing-stat-badge-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-why-choose-content {
  flex: 1;
  min-width: 320px;
}

.landing-why-choose-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.landing-why-choose-heading .highlight {
  color: #3cac62;
}

.landing-why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.landing-why-choose-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.landing-check-icon {
  flex-shrink: 0;
  line-height: 0;
  width: 15px;
  height: 15px;
}

/* ===== Where We Serve ===== */
.landing-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 236px);
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.landing-location-card {
  width: 236px;
  height: 277px;
  box-sizing: border-box;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8ece9;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.landing-location-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.landing-location-photo {
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
}

.landing-location-photo img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.landing-location-body {
  padding: 18px;
}

.landing-location-body h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.landing-location-body p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 10px;
}

.landing-location-link {
  font-size: 13px;
  font-weight: 600;
  color: #3cac62;
}

/* ===== CTA Banner ===== */
.landing-page .landing-cta-banner {
  max-width: 100%;
  width: 100%;
  padding: 0;
  background: linear-gradient(90deg, #057d41 0%, #64bda0 100%);
}

.landing-cta-banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
  flex-wrap: wrap;
}

.landing-cta-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.landing-cta-banner-subtitle {
  font-size: 15px;
  color: #eafaf1;
  max-width: 480px;
  line-height: 1.5;
}

.landing-cta-banner .landing-btn-primary {
  background: #fff;
  color: #057d41;
}

.landing-cta-banner .landing-btn-primary:hover {
  background: #eafaf1;
}
