/* ==========================================================
   Sarona City homepage — Eco City sister-site layout
   Add this file after site.css in includes/header.php.
   ========================================================== */

:root {
  --sarona-deep: #142019;
  --sarona-green: #27352a;
  --sarona-gold: #d3ad61;
  --sarona-gold-light: #e4c98f;
  --sarona-sand: #f4f0e8;
  --sarona-cream: #fbf9f4;
  --sarona-text: #18201b;
  --sarona-muted: #6f746f;
  --sarona-border: rgba(20, 32, 25, 0.13);
}

.eco-container {
  width: min(100% - 56px, 1320px);
  margin-inline: auto;
}

.eco-section-label {
  display: block;
  margin-bottom: 13px;
  color: var(--sarona-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.eco-section-label::before {
  display: none;
  content: none;
}

.eco-home-intro h2,
.eco-home-developments h2,
.eco-home-lifestyle h2,
.eco-home-investment h2,
.eco-home-progress h2,
.eco-home-final h2 {
  margin: 0 0 24px;
  color: var(--sarona-deep);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.eco-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.eco-btn:hover {
  transform: translateY(-2px);
}

.eco-btn-gold {
  border-color: var(--sarona-gold);
  background: var(--sarona-gold);
  color: var(--sarona-deep);
  box-shadow: 0 12px 28px rgba(211, 173, 97, 0.22);
}

.eco-btn-gold:hover {
  border-color: var(--sarona-gold-light);
  background: var(--sarona-gold-light);
}

.eco-btn-dark {
  background: var(--sarona-deep);
  color: #fff;
}

.eco-btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.eco-btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: var(--sarona-deep);
}

/* Hero */

.eco-home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--sarona-deep);
  color: #fff;
}

.eco-home-slides,
.eco-home-slide,
.eco-home-overlay {
  position: absolute;
  inset: 0;
}

.eco-home-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  transition:
    opacity 0.9s ease,
    transform 6s ease;
}

.eco-home-slide.active {
  opacity: 1;
  transform: scale(1.1);
}

.eco-home-overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 12, 9, 0.42),
      transparent 45%,
      rgba(7, 12, 9, 0.56)
    ),
    linear-gradient(90deg, rgba(7, 12, 9, 0.18), transparent 62%);
}

.eco-home-actions {
  position: absolute;
  left: clamp(24px, 5.6vw, 108px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eco-btn-glass {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(18, 26, 21, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
}

.eco-btn-glass:hover {
  border-color: #fff;
  background: #fff;
  color: var(--sarona-deep);
}

.eco-slider-controls {
  position: absolute;
  right: clamp(24px, 5.6vw, 108px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eco-slider-arrow {
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(18, 26, 21, 0.25);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.eco-slider-arrow:hover {
  border-color: var(--sarona-gold);
  background: var(--sarona-gold);
  color: var(--sarona-deep);
}

.eco-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.eco-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.eco-slider-dot.active {
  width: 27px;
  border-color: var(--sarona-gold);
  border-radius: 10px;
  background: var(--sarona-gold);
}

.eco-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 27px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

/* Introduction */

.eco-home-intro {
  position: relative;
  padding: 60px 0 35px;
  overflow: hidden;
  background: var(--sarona-cream);
}

.eco-home-intro::after {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid var(--sarona-border);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 32, 25, 0.018);
}

.eco-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.eco-intro-lead {
  margin: 0;
  color: var(--sarona-green);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.55;
}

.eco-intro-copy {
  margin: 0 0 16px;
  color: var(--sarona-muted);
  font-size: 16px;
  line-height: 1.75;
}

.eco-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.eco-intro-stat {
  width: 100%;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--sarona-border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 45, 34, 0.08);
}

.eco-intro-stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sarona-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

.eco-intro-stat span {
  color: var(--sarona-muted);
  font-size: 11px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0;
}

/* Shared section heading */

.eco-section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}

.eco-section-heading > p {
  margin: 0;
  color: var(--sarona-muted);
}

/* Developments */

.eco-home-developments {
  padding: clamp(90px, 10vw, 145px) 0;
  background: var(--sarona-sand);
}

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

.eco-development-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--sarona-deep);
  color: #fff;
}

.eco-development-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.eco-development-card:hover > img {
  transform: scale(1.045);
}

.eco-development-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 32%, rgba(7, 12, 9, 0.9));
}

.eco-development-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 9px 14px;
  background: var(--sarona-gold);
  color: var(--sarona-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eco-development-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(30px, 4vw, 52px);
}

.eco-development-content > span {
  color: var(--sarona-gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eco-development-content h3 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(40px, 4vw, 62px);
}

.eco-development-content p {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.75);
}

.eco-development-content a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--sarona-gold);
  font-size: 13px;
  font-weight: 700;
}

/* Lifestyle */

.eco-home-lifestyle {
  padding: clamp(90px, 10vw, 145px) 0;
  background: #fff;
}

.eco-lifestyle-grid,
.eco-progress-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.eco-lifestyle-copy > p,
.eco-progress-copy > p {
  margin: 28px 0;
  color: var(--sarona-muted);
}

.eco-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 35px 0;
}

.eco-feature-grid > div {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--sarona-border);
  background: var(--sarona-cream);
}

.eco-feature-grid i {
  color: #a7823d;
  font-size: 23px;
}

.eco-feature-grid strong {
  font-size: 13px;
}

.eco-lifestyle-visual,
.eco-progress-visual {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.eco-lifestyle-visual img,
.eco-progress-visual img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.eco-visual-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  background: rgba(20, 32, 25, 0.86);
  color: #fff;
  backdrop-filter: blur(12px);
}

.eco-visual-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--sarona-gold-light);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eco-visual-caption strong {
  display: block;
  max-width: 520px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
}

/* Value cards */

.eco-home-investment {
  padding: clamp(90px, 10vw, 145px) 0;
  background: var(--sarona-deep);
  color: #fff;
}

.eco-home-investment h2,
.eco-home-investment .eco-section-heading > p {
  color: #fff;
}

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

.eco-investment-card {
  min-height: 320px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transition: 0.3s ease;
}

.eco-investment-card:hover {
  border-color: var(--sarona-gold);
  background: var(--sarona-gold);
  color: var(--sarona-deep);
  transform: translateY(-6px);
}

.eco-investment-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--sarona-gold-light);
  font-size: 23px;
}

.eco-investment-card:hover .eco-investment-icon {
  border-color: var(--sarona-deep);
  color: var(--sarona-deep);
}

.eco-investment-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 27px;
}

.eco-investment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.eco-investment-card:hover h3,
.eco-investment-card:hover p {
  color: var(--sarona-deep);
}

/* Progress */

.eco-home-progress {
  padding: clamp(90px, 10vw, 145px) 0;
  background: var(--sarona-cream);
}

.eco-progress-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.eco-progress-visual > span {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 15px;
  background: var(--sarona-gold);
  color: var(--sarona-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eco-progress-copy ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.eco-progress-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--sarona-muted);
}

.eco-progress-copy li i {
  color: #a7823d;
}

/* Final CTA */

.eco-home-final {
  position: relative;
  padding: clamp(90px, 9vw, 130px) 0;
  overflow: hidden;
  background: var(--sarona-green);
  color: #fff;
}

.eco-home-final::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.018);
}

.eco-final-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
}

.eco-home-final h2 {
  color: #fff;
}

.eco-home-final p {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.eco-final-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

/* Responsive */

@media (max-width: 1000px) {
  .eco-scroll-indicator {
    display: none;
  }

  .eco-intro-grid,
  .eco-section-heading,
  .eco-lifestyle-grid,
  .eco-progress-grid,
  .eco-final-inner {
    grid-template-columns: 1fr;
  }

  .eco-development-card {
    min-height: 540px;
  }

  .eco-lifestyle-visual,
  .eco-lifestyle-visual img,
  .eco-progress-visual,
  .eco-progress-visual img {
    min-height: 520px;
  }

  .eco-final-actions {
    flex-direction: row;
  }
}

@media (max-width: 680px) {
  .eco-container {
    width: min(100% - 36px, 1320px);
  }

  .eco-home-hero {
    min-height: 680px;
  }

  .eco-home-actions {
    right: 18px;
    bottom: 22px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-home-actions .eco-btn {
    min-height: 50px;
    padding: 0 12px;
    font-size: 11px;
  }

  .eco-slider-controls {
    right: 18px;
    bottom: 92px;
  }

  .eco-slider-arrow {
    width: 43px;
    height: 43px;
  }

  .eco-intro-stats,
  .eco-development-grid,
  .eco-investment-grid,
  .eco-feature-grid {
    grid-template-columns: 1fr;
  }

  .eco-section-heading {
    gap: 24px;
    margin-bottom: 40px;
  }

  .eco-development-card {
    min-height: 470px;
  }

  .eco-development-content p {
    font-size: 13px;
  }

  .eco-lifestyle-visual,
  .eco-lifestyle-visual img,
  .eco-progress-visual,
  .eco-progress-visual img {
    min-height: 390px;
  }

  .eco-investment-card {
    min-height: 0;
  }

  .eco-investment-icon {
    margin-bottom: 30px;
  }

  .eco-final-actions {
    flex-direction: column;
  }
}

/* =====================================================
   FINAL ECO CITY HOMEPAGE MATCH
===================================================== */

.eco-section-label,
.eco-home-intro .eco-section-label,
.eco-home-developments .eco-section-label,
.eco-home-lifestyle .eco-section-label {
  display: block !important;
  margin-bottom: 13px !important;
  color: var(--sarona-gold) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.8px !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
}

.eco-section-label::before,
.eco-home-intro .eco-section-label::before,
.eco-home-developments .eco-section-label::before,
.eco-home-lifestyle .eco-section-label::before {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

.eco-home-intro {
  padding: 60px 0 35px !important;
  background: var(--sarona-cream) !important;
}

.eco-home-intro h2,
.eco-home-developments h2,
.eco-home-lifestyle h2 {
  margin: 0 0 24px !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: clamp(38px, 4vw, 56px) !important;
  font-weight: 750 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
}

.eco-home-intro h2,
.eco-home-developments h2 {
  color: var(--sarona-deep) !important;
}

.eco-intro-lead {
  margin: 0 !important;
  color: var(--sarona-green) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.eco-intro-copy {
  margin: 0 0 16px !important;
  color: var(--sarona-muted) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.75 !important;
}

.eco-intro-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 25px !important;
}

.eco-intro-stat {
  min-height: 0 !important;
  padding: 22px !important;
  border: 1px solid var(--sarona-border) !important;
  border-radius: 17px !important;
  background: #fff !important;
  box-shadow: 0 10px 30px rgba(14, 45, 34, 0.08) !important;
}

.eco-intro-stat strong {
  margin: 0 0 5px !important;
  color: var(--sarona-green) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

.eco-intro-stat span {
  margin: 0 !important;
  color: var(--sarona-muted) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.eco-home-developments {
  padding: 42px 0 65px !important;
  background: #fff !important;
}

.eco-home-developments .eco-section-heading {
  display: grid !important;
  grid-template-columns: 1.25fr 0.75fr !important;
  align-items: center !important;
  gap: 45px !important;
  margin-bottom: 30px !important;
}

.eco-home-developments .eco-section-heading > p {
  max-width: 620px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--sarona-muted) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.eco-development-grid {
  gap: 24px !important;
}

.eco-development-card {
  min-height: 590px !important;
  border-radius: 24px !important;
  box-shadow: 0 25px 70px rgba(8, 35, 25, 0.18) !important;
}

.eco-development-card > img {
  min-height: 590px !important;
}

.eco-development-badge {
  padding: 9px 15px !important;
  border-radius: 999px !important;
  letter-spacing: 1.2px !important;
}

.eco-development-content {
  right: 30px !important;
  bottom: 30px !important;
  left: 30px !important;
  padding: 0 !important;
}

.eco-development-content h3 {
  margin: 10px 0 14px !important;
  color: #fff !important;
  font-size: clamp(34px, 4vw, 50px) !important;
  font-weight: 750 !important;
  line-height: 1.08 !important;
}

.eco-home-lifestyle {
  padding: 65px 0 !important;
  background: #09291e !important;
}

.eco-home-lifestyle .eco-lifestyle-grid {
  grid-template-columns: 5fr 7fr !important;
  gap: clamp(38px, 4vw, 58px) !important;
}

.eco-home-lifestyle h2 {
  color: #fff !important;
}

.eco-home-lifestyle .eco-lifestyle-copy > p {
  margin: 24px 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 16px !important;
  line-height: 1.9 !important;
}

.eco-home-lifestyle .eco-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 24px 0 34px !important;
}

.eco-home-lifestyle .eco-feature-grid > div {
  min-height: 0 !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.eco-home-lifestyle .eco-feature-grid i {
  width: 47px !important;
  height: 47px !important;
  display: grid !important;
  place-items: center !important;
  flex-shrink: 0 !important;
  border-radius: 50% !important;
  background: var(--sarona-gold) !important;
  color: var(--sarona-deep) !important;
  font-size: 20px !important;
}

.eco-home-lifestyle .eco-feature-grid strong {
  color: #fff !important;
  font-size: 13px !important;
}

.eco-home-lifestyle .eco-lifestyle-visual,
.eco-home-lifestyle .eco-lifestyle-visual img {
  min-height: 520px !important;
}

.eco-home-lifestyle .eco-lifestyle-visual {
  border-radius: 28px !important;
  box-shadow: 0 25px 70px rgba(8, 35, 25, 0.18) !important;
}

@media (max-width: 1000px) {
  .eco-home-developments .eco-section-heading,
  .eco-home-lifestyle .eco-lifestyle-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .eco-home-intro {
    padding: 48px 0 28px !important;
  }

  .eco-home-developments,
  .eco-home-lifestyle {
    padding: 48px 0 !important;
  }

  .eco-home-intro h2,
  .eco-home-developments h2,
  .eco-home-lifestyle h2 {
    font-size: clamp(34px, 10vw, 44px) !important;
  }

  .eco-home-lifestyle .eco-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eco-home-slide,
  .eco-home-slide.active {
    transform: none;
    transition: opacity 0.4s ease;
  }
}

/* ==========================================================
   Compact spacing and rounded homepage finish
   ========================================================== */

.eco-home-intro {
  padding-top: 60px;
  padding-bottom: 35px;
}

.eco-home-developments,
.eco-home-lifestyle,
.eco-home-investment,
.eco-home-progress {
  padding-top: 68px;
  padding-bottom: 68px;
}

.eco-section-heading {
  align-items: start;
  margin-bottom: 36px;
}

.eco-section-heading > p {
  padding-top: 36px;
}

.eco-development-grid {
  gap: 24px;
}

.eco-development-card {
  min-height: 590px;
  border-radius: 24px;
}

.eco-development-badge {
  border-radius: 999px;
}

.eco-lifestyle-grid,
.eco-progress-grid {
  gap: clamp(36px, 5vw, 72px);
}

.eco-lifestyle-visual,
.eco-progress-visual {
  min-height: 600px;
  border-radius: 24px;
}

.eco-lifestyle-visual img,
.eco-progress-visual img {
  min-height: 600px;
}

.eco-visual-caption {
  border-radius: 16px;
}

.eco-feature-grid > div,
.eco-investment-card {
  border-radius: 18px;
}

.eco-investment-grid {
  gap: 22px;
}

.eco-investment-card {
  min-height: 295px;
  padding: 36px;
}

.eco-investment-icon {
  margin-bottom: 38px;
}

.eco-progress-visual > span {
  border-radius: 999px;
}

.eco-home-final {
  padding-top: 72px;
  padding-bottom: 72px;
  border-radius: 28px 28px 0 0;
}

@media (max-width: 1000px) {
  .eco-section-heading > p {
    padding-top: 0;
  }

  .eco-development-card {
    min-height: 520px;
  }

  .eco-lifestyle-visual,
  .eco-lifestyle-visual img,
  .eco-progress-visual,
  .eco-progress-visual img {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .eco-home-developments,
  .eco-home-lifestyle,
  .eco-home-investment,
  .eco-home-progress,
  .eco-home-final {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .eco-home-intro {
    padding-top: 48px;
    padding-bottom: 28px;
  }

  .eco-section-heading {
    margin-bottom: 28px;
  }

  .eco-development-card {
    min-height: 455px;
    border-radius: 18px;
  }

  .eco-lifestyle-visual,
  .eco-progress-visual {
    min-height: 380px;
    border-radius: 18px;
  }

  .eco-lifestyle-visual img,
  .eco-progress-visual img {
    min-height: 380px;
  }

  .eco-investment-card {
    padding: 30px;
  }
}

/* Keep the Eco City statistics layout at every screen size */
.eco-intro-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 680px) {
  .eco-intro-stats {
    gap: 8px;
  }

  .eco-intro-stat {
    padding: 20px 12px;
  }

  .eco-intro-stat strong {
    font-size: 30px;
  }

  .eco-intro-stat span {
    font-size: 12px;
    line-height: 1.4;
  }
}
