/* ===== CONTACT HERO ===== */
.contact-hero {
  background: url("../img/contact-hero.jpg") center/cover no-repeat;
  padding: 120px 20px;
  position: relative;
  width: 100%;
  min-height: 300px;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(40, 61, 82, 0.7);
}
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.contact-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ===== CONTACT INTRO ===== */
.contact-intro {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.contact-intro .container {
  max-width: 900px;
  margin: 0 auto;
}
.contact-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #283d52;
  margin-bottom: 20px;
}
.contact-intro p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: #fff;
  border-radius: 10px;
  border-left: 5px solid #283d52;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.contact-card .icon {
  font-size: 1.8rem;
  color: #865f4e;
  flex-shrink: 0;
}
.contact-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #283d52;
}
.contact-card p,
.contact-card a {
  margin: 0;
  color: #555;
  font-size: 1rem;
  text-decoration: none;
}
.contact-card a:hover {
  color: #c4956d;
}
.contact-card:hover {
  background: #c4956d;
  color: #fff;
  transform: translateY(-4px);
}
.contact-card:hover .icon,
.contact-card:hover h5,
.contact-card:hover a,
.contact-card:hover p {
  color: #fff;
}

/* ===== MAP WRAPPER ===== */
.map-wrapper iframe {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  .contact-intro {
    text-align: left;
  }
  .contact-intro h2 {
    font-size: 1.8rem;
  }
  .contact-intro p {
    font-size: 1rem;
  }
  .contact-card {
    justify-content: flex-start;
    text-align: left;
  }
}
