/* ===== BRANCHES SECTION ===== */
.branches-section {
  width: 100%;
  background: #61A60D;
  padding: 120px 0 140px;
  position: relative;
}

/* visually hugs previous rounded section */


/* inner width = CTA / FAQ */
.branches-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* heading */
.branches-header {
  margin-bottom: 60px;
}

.branches-sub {
  font-size: 63px;
  font-weight: 600;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.branches-title {
  font-size: 84px;
  font-weight: 900;
  color: #1E1F1C;
  line-height: 1;
  margin: 0;
}

/* map */
.branches-map {
  width: 100%;
  display: flex;
  justify-content: center;
}

.branches-map img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .branches-section {
    padding: 90px 0 110px;
  }

  .branches-sub {
    font-size: 42px;
  }

  .branches-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .branches-section {
    padding: 70px 0 90px;
  }

  .branches-header {
    margin-bottom: 40px;
  }

  .branches-sub {
    font-size: 32px;
  }

  .branches-title {
    font-size: 32px;
  }
}

@media (max-width: 420px) {
  .branches-sub {
    font-size: 32px;
  }

  .branches-title {
    font-size: 32px;
  }
}
.branches-section {
  width: 100%;
  background: #61A60D;
  padding: 160px 0 100px; /* more top space */
  position: relative;
  z-index: 1;

  /* THIS is the key */
  margin-top: -80px; /* pulls it down visually */
}
/* ==============================
   BRANCHES CONTACT INFO
============================== */

.branches-contact {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-label {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #F2FCD9;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 26px;
  font-weight: 700;
  color: #F2FCD9;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-value:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 768px) {
  .branches-contact {
    gap: 40px;
    margin-top: 60px;
  }

  .contact-label {
    font-size: 18px;
  }

  .contact-value {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .contact-value {
    font-size: 18px;
  }
}
