/* ===== HERO ===== */

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url("../images/contact-hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 6rem 1rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== CONTACT SECTION ===== */

.contact-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  padding: 4rem 0;
}

.contact-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-card h2 {
  margin-bottom: 1rem;
  color: #004080;
}

.contact-card p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-highlight {
  font-weight: 600;
  font-size: 1.1rem;
  color: #004080;
}

/* ===== BUTTON ===== */

.contact-btn {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  background: #004080;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #002b5e;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
}