/* ======================================================
   CONTACT PAGE — MATCHED WITH IMPACT PAGE DESIGN
====================================================== */

body {
  font-family: "Segoe UI", sans-serif;
  background: #f4f9ff;
  margin-top: 80px;
}

/* ===================== PREMIUM GRADIENT NAVBAR ===================== */
.navbar {
  background: linear-gradient(90deg, #0b7a2a, #0d6efd) !important;
  padding: 15px 0;
  box-shadow: 0px 4px 30px rgba(0,0,0,.25);
  border: none !important;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .5px;
  color: #fff !important;
  text-shadow:
    2px 2px 6px rgba(0,0,0,0.55),
    0 0 18px rgba(255,255,255,0.55);
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  transition: .3s;
  padding: 10px 14px !important;
}

.nav-link.active,
.nav-link:hover {
  color: #ffeb3b !important;
  text-shadow: 0 0 10px #fff;
}

/* Toggler button for mobile */
.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.7);
}


/* ===================== BANNER ===================== */
.contact-banner {
  height: 40vh;
  background: linear-gradient(#085a1fbb, #085a1fe3),
              url('../assets/images/rural-bg.jpg') center/cover no-repeat;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-banner h1 {
  font-size: 3rem;
  text-shadow: 0px 5px 16px rgba(0,0,0,0.45);
}


/* ===================== MAIN CONTENT ===================== */
.contact-section {
  padding: 60px 0;
}


/* Contact Info Box */
.contact-box {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0px 8px 26px rgba(0,0,0,0.12);
  border-left: 6px solid #0d6efd;
}

.contact-box h4,
.contact-box h5 {
  color: #0d6efd;
}


/* Contact Form */
.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  border-left: 6px solid #0d6efd;
}

.btn-submit {
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-submit:hover {
  background: #094cb3;
}


/* Social Icons */
.icon {
  background: #0d6efd;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  margin-right: 6px;
  transition: .3s;
  font-size: 20px;
}

.icon:hover {
  background: #003c9e;
}


/* ===================== FOOTER (Same as Impact) ===================== */
.footer-pro {
  background: linear-gradient(90deg, #003c9e, #0d6efd);
  padding: 30px 0;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  margin-top: 60px;
  color: #fff;
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .contact-banner { height: 30vh; }
  .contact-form { padding: 24px; }
  .contact-box { padding: 24px; }
  .contact-banner h1 { font-size: 2.2rem; }
}
