/* =========================
   CONTACT HERO
========================= */
.contact-hero {
  position: relative;
  height: 45vh;
  background: url("assets/images/contact-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: #071b33;
}

.contact-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact-hero-content p {
  font-size: 1.1rem;
  color: #dbe7ff;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background: linear-gradient(180deg, #071b33, #04101f);
  padding: 4rem 1rem;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* =========================
   CONTACT INFO
========================= */
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 14px;
  color: #fff;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.contact-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #e3ecff;
}

.contact-info i {
  color: #4da3ff;
  font-size: 1.1rem;
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0c2a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #4da3ff;
  color: #04101f;
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
}

.contact-form h2 {
  margin-bottom: 1.5rem;
  color: #04101f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form button {
  width: 100%;
  padding: 0.9rem;
  background: #04101f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #4da3ff;
  color: #04101f;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero-content h1 {
    font-size: 2rem;
  }
}

/* Phone */
@media (max-width: 480px) {
  .contact-hero {
    height: 35vh;
  }

  .contact-hero-content h1 {
    font-size: 1.7rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }
}
/* FIX: Mobile header overlap on Contact page */
@media (max-width: 480px) {
  .contact-hero {
    margin-top: 80px; /* height of your mobile header */
    height: calc(35vh - 80px);
  }
}
