/* Base Styles */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  color: #23313a;
  background: #f7fafd;
}

a {
  text-decoration: none;
  color: inherit;
}


.icon-sm {
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

.topbar-right a {
  color: #ffd449;
  margin-left: 12px;
  font-weight: 500;
  transition: color 0.2s;
}

.topbar-right a:hover {
  color: #fff;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 20px 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(32, 93, 54, 0.08);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(29, 27, 27, 0.5)),
    url('african-man-harvesting-vegetables\ \(3\).jpg');
  height: 30vh;
  background-size: cover;

  position: relative;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  border: none;
  border-radius: 10%;
  padding: 10px;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px #fd902625, 0 1.5px 8px #219a3120;
  outline: none;

}

.hamburger:focus {
  outline: 2px solid #ffd449;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.36rem;
  font-weight: 700;
  color: white;
}

.logo img {
  height: 70px;
  margin-right: 18px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin-left: 30rem;
  padding: 0;
}

.nav-links a {
  color: white;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  font-size: 1.0rem;

}

.nav-links a.active,
.nav-links a:hover {
  background: white;
  border-radius: 30px;
  padding-right: 20px;
  color: #1a3253;
}

/* Contact Hero */
.contact-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #205d36;
  /* opacity: 0.7; */
  /* z-index: 1; */
}

.contact-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 44px 0 36px 0;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 48px;
}

.hero-btn {
  background: #ffd449;
  color: #1a3253;
  border: none;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 22px;
  font-size: 1.07rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
  background: #205d36;
  ;
  color: #ffd449;
  border: 1.5px solid #ffd449;
}

/* Contact Section */
.contact-section {
  /* background: #ffffff; */
  padding: 44px 0 44px 0;
  display: flex;
  justify-content: center;
}

.header-coop {
  color: #17a54b;
}

.header-connect {
  color: #3b5e8f;
  margin-left: -1vh;
}

.footer-coop {
  color: #3b5e8f;

}

.footer-connect {
  color: #17a54b;
  margin-left: -0.2vh;
}

.contact-info-form {
  display: flex;
  gap: 32px;
  /* background: #f7f3f3; */
  border-radius: 15px;
  /* box-shadow: 0 2px 18px rgba(32,93,54,0.08); */
  max-width: 900px;
  padding: 36px 32px;
  width: 90vw;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 230px;
  max-width: 270px;
  flex: 1;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* background: #fafdff; */
  border-radius: 12px;
  padding: 16px 14px;
  /* box-shadow: 0 1px 5px rgba(32,93,54,0.04); */
}

.info-icon {
  background: #ffd449;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-md {
  width: 22px;
  height: 22px;
}

.info-title {
  font-weight: 700;
  color: #1a3253;
  font-size: 1.07rem;
}

.info-detail {
  color: #23313a;
  font-size: 0.98rem;
  margin-top: 2px;
}

.contact-form-box {
  background: #f8f6f6;
  border-radius: 13px;
  padding: 18px 22px 22px 22px;
  /* box-shadow: 0 1px 7px rgba(32,93,54,0.05); */
  min-width: 320px;
  flex: 2;
}

.contact-form-box h2 {
  margin-top: 0;
  color: #1a3253;
  font-size: 1.22rem;
  margin-bottom: 18px;
  font-weight: 800;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

input,
textarea {
  padding: 10px 12px;
  border-radius: 7px;
  border: 1px solid #c3d3e2;
  font-size: 1rem;
  background: #fff;
  color: #23313a;
  outline: none;
  width: 100%;
  font-family: poppins, sans-serif;
}

input:focus,
textarea:focus {
  border: 1.5px solid #ffd449;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.send-btn {
  background: #ffd449;
  color: #1a3253;
  border: none;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 22px;
  font-size: 1.07rem;
  cursor: pointer;
  margin-top: 10px;
  width: 60%;
  transition: background 0.2s, color 0.2s;
}

.send-btn:hover {
  background: #205d36;
  color: #ffd449;
  border: 1.5px solid #ffd449;
}

/* Map Section */
.map-section {
  background: #fff;
  padding: 44px 0 44px 0;
  text-align: center;
}

.map-section h2 {
  color: #1a3253;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.map-section p {
  color: #23313a;
  margin-bottom: 16px;
  font-size: 14px;
}

.map-wrap {
  max-width: 850px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(32, 93, 54, 0.09);
}

/* Footer */
footer {
  background: #205D36;
  color: #fff;
  padding: 2rem 0 0 1rem;
  margin-top: 3rem;
  font-size: 1rem;
  border-top: 5px solid #FFD449;
  font-weight: bold;

}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;

}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  padding-bottom: 18px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  filter: grayscale(0.1);

}

.footer-bottom {
  text-align: center;
  font-size: 0.97rem;
  color: #FFD449;
  margin-bottom: 0.7rem;
  margin-top: 0.7rem;
  padding-bottom: 12px;
}

/* Responsive Styles */
/* ============ Base Responsive ============ */




@media only screen and (max-width: 500px) {

 .contact-hero-content p {
   font-size: 1rem;
   width: 85%;
   margin: auto;
   padding-top: 4%;
 }

 .contact-hero-content h1{
   font-size: 40px;
   width: 85%;
   margin: auto;
 }

 .contact-section {
   flex-direction: column;
   align-items: center;
   /* Remove any margin-left or right here! */
   margin:0;
   width: 100%;
   padding-top: 4%;
   
 }

 .contact-info-form {
   padding: 0;
   
   width: 80%;
   margin:0;
   box-shadow: 0 1px 8px rgba(32, 93, 54, 0.08);
   border-radius: 15px;
  }


.contact-info {
  flex-direction: column;
  gap: 24px;
  width: 80%;
  flex: 0;
}

 .contact-form-box {
   width: 80%;
   align-items:center;
   margin: 0;
   background: #f8f6f6;
   border-radius: 13px;
   padding: 0;
   /* box-shadow: 0 1px 7px rgba(32,93,54,0.05); */
 }

 .hamburger {
   display: block;
   margin-left: 25%;
   z-index: 1001;
   position: absolute;
   right: 20px;
   top: 20px;
 }

.nav-links {
   flex-direction: column;
   gap: 0;
   width: 100%;
   background: rgba(32, 93, 54, 0.97);
   position: absolute;
   right: 0;
   top: 60px;
   margin: 0;
   padding: 0;
   z-index: 1000;
   gap: 20px;
   padding: 1rem 0;
   display: none;
 }


 .nav-links.show {
   display: flex;
 }


 .nav-links a {
   color: #fff;
   padding: 14px 0 14px 24px;
   width: 100%;
   border-radius: 0;
   border-bottom: 1px solid #205d36;
   font-size: 1rem;
 }

 .map-section h2 {
   font-size: 20px;
   font-weight: 800;
   margin-bottom: 8px;
   width: 70%;
   margin: auto;
 }

 .map-section p {
   font-size: 14px;
   padding: 0 15px;
   margin-bottom: 16px;
 }

 .map-wrap {
   max-width: 550px;
   padding: 0 20px;
 }
 footer {
   height: auto;
 }

}



@media only screen and (min-width: 501px) and (max-width:1000px) {

 .contact-hero-content p {
   font-size: 1rem;
   width: 85%;
   margin: auto;
   padding-top: 4%;
 }

 .contact-hero-content h1{
   font-size: 40px;
   width: 85%;
   margin: auto;
 }

 .contact-section {
   flex-direction: column;
   align-items: center;
   /* Remove any margin-left or right here! */
   margin:0;
   width: 100%;
   padding-top: 4%;
   
 }

 .contact-info-form {
   padding: 0;
   width: 80%;
   margin:0;
   box-shadow: 0 1px 8px rgba(32, 93, 54, 0.08);
   border-radius: 15px;
  }

.contact-info {
  flex-direction: column;
  gap: 24px;
  width: 80%;
  flex: 0;
}

 .contact-form-box {
   width: 80%;
   align-items:center;
   margin: 0;
   background: #f8f6f6;
   border-radius: 13px;
   padding: 0;
   /* box-shadow: 0 1px 7px rgba(32,93,54,0.05); */
 }

 /* .hamburger {
   display: block;
   margin-left: 155%;
   z-index: 100;
 }
.nav-links {
  display: none;
  gap: 26px;
  list-style: none;
  margin-left: 30rem;
  padding: 0;
 
} */

 .hamburger {
   display: block;
   margin-left: 25%;
   z-index: 1001;
   position: absolute;
   right: 20px;
   top: 20px;
 }

.nav-links {
   flex-direction: column;
   gap: 0;
   width: 100%;
   background: rgba(32, 93, 54, 0.97);
   position: absolute;
   right: 0;
   top: 60px;
   margin: 0;
   padding: 0;
   z-index: 1000;
   gap: 20px;
   padding: 1rem 0;
   display: none;
 }


 .nav-links.show {
   display: flex;
 }


 .nav-links a {
   color: #fff;
   padding: 14px 0 14px 24px;
   width: 100%;
   border-radius: 0;
   border-bottom: 1px solid #205d36;
   font-size: 1rem;
 }



 .map-section h2 {
   font-size: 20px;
   font-weight: 800;
   margin-bottom: 8px;
   width: 70%;
   margin: auto;
 }

 .map-section p {
   font-size: 14px;
   padding: 0 15px;
   margin-bottom: 16px;
 }

 .map-wrap {
   max-width: 550px;
   padding: 0 20px;
 }
 footer {
   height: auto;
 }

}

@media only screen and (min-width: 1001px) and (max-width:1300px) {

 .contact-hero-content p {
   font-size: 1rem;
   width: 85%;
   margin: auto;
   padding-top: 4%;
 }

 .contact-hero-content h1{
   font-size: 40px;
   width: 85%;
   margin: auto;
 }

 .contact-section {
   flex-direction: column;
   align-items: center;
   /* Remove any margin-left or right here! */
   margin:0;
   width: 100%;
   padding-top: 4%;
   
 }

 .contact-info-form {
   padding: 0;
   
   width: 80%;
   margin:0;
   box-shadow: 0 1px 8px rgba(32, 93, 54, 0.08);
   border-radius: 15px;
  }


.contact-info {
  flex-direction: column;
  gap: 24px;
  width: 80%;
  flex: 0;
}

 .contact-form-box {
   width: 80%;
   align-items:center;
   margin: 0;
   background: #f8f6f6;
   border-radius: 13px;
   padding: 0;
   /* box-shadow: 0 1px 7px rgba(32,93,54,0.05); */
 }

 .hamburger {
   display: none;
   margin-left: 25%;
   z-index: 100;
 }
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin-left: 8rem;
  padding: 0;
 
}

.nav-links a {
  color: white;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  font-size: 12px;

}

 .map-section h2 {
   font-size: 20px;
   font-weight: 800;
   margin-bottom: 8px;
   width: 70%;
   margin: auto;
 }

 .map-section p {
   font-size: 14px;
   padding: 0 15px;
   margin-bottom: 16px;
 }

 .map-wrap {
   max-width: 550px;
   padding: 0 20px;
 }
 footer {
   height: auto;
 }

}