/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  background: #1B4332;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1B4332 0%, #0d2118 100%);
  opacity: 0.85;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 70px 0 80px;
  background: #f8f8f8;
}

/* Info cards row */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(27,67,50,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(27,67,50,0.12);
}

.contact-card-icon {
  width: 62px;
  height: 62px;
  background: #1B4332;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-card-icon i {
  font-size: 1.4rem;
  color: #FFCA29;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1B4332;
  margin: 0 0 8px;
}

.contact-card p {
  font-size: 0.95rem;
  color: #696969;
  margin: 0;
  line-height: 1.6;
}

.contact-card p a {
  color: #696969;
  transition: color 0.2s;
}

.contact-card p a:hover {
  color: #FFCA29;
}

/* Contact body: form + map side by side */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrap h2,
.contact-map-wrap h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1B4332;
  margin: 0 0 28px;
}

/* Form */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1B4332;
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #484848;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFCA29;
  box-shadow: 0 0 0 3px rgba(255,202,41,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* Submit button — reuses .read-more style from main CSS */
.contact-form .read-more button {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background: #FFCA29;
  color: #1B4332;
  border: none;
  border-radius: 5px;
  padding: 15px 40px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.contact-form .read-more button:hover {
  background: #1B4332;
  color: #FFCA29;
  transform: translateY(-2px);
}

/* Map */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,67,50,0.1);
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 400px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
