body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

/* HERO SECTION */
.contact-hero {
  position: relative;
  height: 80vh;
  background: url('https://i.ibb.co/HTckHL3d/About-4.webp') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.nav-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.site-logo {
  width: 160px;
}

.nav-menu a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #228B22;
}

.hero-text h1 {
  color: white;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
}

/* CONTACT SECTION */
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}

.contact-intro h1 {
  color: #228B22;
  font-size: 36px;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
}

.contact-item strong {
  display: block;
  color: #000;
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-item a {
  color: #228B22;
  font-size: 18px;
  text-decoration: none;
}

/* FORM */
.contact-form-section form {
  max-width: 700px;
  margin: 0 auto;
}

.row {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
}

button {
  background-color: #228B22;
  color: white;
  font-size: 18px;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background-color: #228B22;
}

/* FOOTER */
.footer {
  background-color: white;
  padding: 5px 80px 20px 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left {
  max-width: 200px;
}

.site-name {
  font-size: 32px;
  color: #228B22;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 15px;
  display: inline-block;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.link-group h3 {
  font-size: 20px;
  color: #228B22;
  margin-bottom: 15px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 10px;
}

.link-group ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* Green Bar */
.footer-bar {
  width: 100vw; /* Full viewport width */
  height: 50px;
  background-color: #228B22;
  margin-left: calc(-50vw + 50%); /* Cancels any container padding */
  margin-bottom: calc(-50vw + 50%); /* Cancels any container padding */
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer {
    padding: 20px;
  }
}
