/* =========================
OVERVIEW HERO (FINAL FIXED)
========================= */

.overview-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;

  padding: 180px 0 120px;

  /* IMPORTANT: use SINGLE background declaration */
  background: url("../img/bg/bg-5.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* OVERLAY (same pattern as contact page) */
.overview-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(20, 28, 24, 0.78) 0%,
    rgba(20, 28, 24, 0.45) 45%,
    rgba(20, 28, 24, 0.15) 100%
  );

  z-index: 1;
}

/* CONTENT WRAPPER */
.overview-hero .container {
  position: relative;
  z-index: 5;
}

.overview-hero-content {
  max-width: 720px;
}

/* KICKER */
.overview-hero-kicker {
  display: inline-flex;
  align-items: center;

  padding-left: 52px;

  margin-bottom: 22px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.78);

  position: relative;
}

.overview-hero-kicker::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 38px;
  height: 1px;

  background: #d7b37a;
}

/* HEADING */
.overview-hero-content h1 {
  margin: 0 0 26px;

  font-size: clamp(46px, 5vw, 82px);
  line-height: 1.02;

  font-weight: 700;

  letter-spacing: -2px;

  color: #ffffff;
}

.overview-hero-content h1 span {
  color: #d7b37a;
}

/* TEXT */
.overview-hero-content p {
  max-width: 640px;

  font-size: 16px;
  line-height: 1.9;

  color: rgba(255,255,255,0.84);
}

/* BUTTONS */
.overview-hero-buttons {
  display: flex;
  gap: 18px;

  margin-top: 42px;
  flex-wrap: wrap;
}

/* BUTTON BASE */
.overview-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 200px;
  height: 58px;

  padding: 0 30px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 1px;
  text-transform: uppercase;

  text-decoration: none;

  transition: 0.35s ease;
}

/* PRIMARY */
.overview-btn.primary {
  background: #d7b37a;
  color: #142018;
}

.overview-btn.primary:hover {
  transform: translateY(-3px);
  background: #ffffff;
}

/* SECONDARY */
.overview-btn.secondary {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.overview-btn.secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
  .overview-hero {
    padding: 160px 0 100px;
    background-position: 60% center;
  }
}

@media (max-width: 767px) {
  .overview-hero {
    min-height: 780px;
    padding: 130px 0 70px;

    align-items: flex-end;
  }

  .overview-hero-kicker {
    padding-left: 40px;
    font-size: 10px;
  }

  .overview-hero-content h1 {
    font-size: 42px;
  }

  .overview-hero-buttons {
    flex-direction: column;
  }

  .overview-btn {
    width: 100%;
  }
}


/* =========================
OVERVIEW MID SECTION
========================= */

.overview-mid-section {
  position: relative;
  padding: 120px 0;

  background: url("../img/bg/eco-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overview-mid-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(10, 30, 22, 0.92) 0%,
    rgba(10, 30, 22, 0.72) 45%,
    rgba(10, 30, 22, 0.55) 100%
  );

  z-index: 1;
}

.overview-mid-grid {
  position: relative;
  z-index: 2;

  display: grid;

  /* LEFT SMALL, RIGHT BIG (FIXED) */
  grid-template-columns: 0.75fr 1.5fr;

  gap: 70px;

  align-items: center;
}

/* =========================
LEFT CARD (SMALLER)
========================= */

.overview-mid-left {
  display: flex;
  justify-content: flex-start;
}

.glass-card {
  width: 100%;
  max-width: 260px;

  padding: 24px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.12);

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-box h3 {
  font-size: 20px;
  color: #dfbc84;
  margin-bottom: 4px;
  font-weight: 600;
}

.stat-box p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
}

/* =========================
RIGHT CONTENT (LARGER SPACE)
========================= */

.overview-mid-right {
  max-width: 720px;
}

/* MATCHED HEADER STYLE */
.eco-section-kicker {
  position: relative;

  display: inline-flex;
  align-items: center;

  padding-left: 48px;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.78);
}

.eco-section-kicker::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 1px;

  background: #d7b37a;
}

/* HEADING (FIXED AS REQUESTED) */
.overview-mid-right h2 {
  font-size: clamp(46px, 4vw, 72px);
  line-height: 1.05;

  color: #ffffff;

  margin-bottom: 18px;
  font-weight: 600;
}

.text-gold {
  color: #dfbc84;
}

.overview-mid-right p {
  font-size: 15px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.78);

  margin-bottom: 22px;
}

/* =========================
POINTS
========================= */

.mid-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}

.mid-points li {
  position: relative;

  padding-left: 22px;
  margin-bottom: 10px;

  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.mid-points li::before {
  content: "✓";
  position: absolute;
  left: 0;

  color: #dfbc84;
  font-weight: 600;
}

/* BUTTON */
.mid-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border-radius: 10px;

  background: #dfbc84;
  color: #10251e;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.mid-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {
  .overview-mid-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .glass-card {
    max-width: 100%;
  }

  .overview-mid-right h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .overview-mid-section {
    padding: 80px 0;
  }

  .overview-mid-right h2 {
    font-size: 28px;
  }

  .overview-mid-right p {
    font-size: 13px;
  }
}