/* ================= CONTACT HERO ================= */
.contact-hero {
  position: relative;
  height: 60vh;
  background-image: url("/static/images/img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.contact-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hero-content p {
  font-size: 18px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .contact-hero {
    height: 45vh;
    background-attachment: scroll;
  }

  .contact-hero-content h1 {
    font-size: 32px;
  }

  .contact-hero-content p {
    font-size: 16px;
    padding: 0 20px;
  }
}

/* ================= PAGE LAYOUT ================= */
.page-wrapper-content {
  margin-top: 80px;
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ================= LOCATION SECTION ================= */
.location-title {
  text-align: center;
  color: #2e7d32;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.location-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.location-map {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

.map-overlay-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(46, 125, 50, 0.85);
  color: #ffffff;
  padding: 14px 30px;
  font-size: 28px;
  font-weight: 700;
  border-radius: 30px;
  z-index: 2;
}

.location-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.location-block {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.location-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2e7d32;
  margin-bottom: 12px;
}

.location-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.location-text i {
  color: #2e7d32;
  margin-right: 8px;
  min-width: 18px;
}

@media (max-width: 768px) {
  .location-section {
    flex-direction: column;
  }

  .map-overlay-title {
    font-size: 22px;
    padding: 10px 22px;
  }

  .location-map iframe {
    min-height: 300px;
  }
}