/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #2c6e49;
  color: white;
}

header nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
  color: #a8d5ba;
}

/* Hero Section */
.hero-contact {
  text-align: center;
  padding: 100px 20px;
  background: url('../images/contact-hero.jpg') no-repeat center center/cover;
  color: white;
}

.hero-contact h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-contact p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 80px 50px;
  gap: 50px;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-info h2, .contact-form h2 {
  color: #2c6e49;
  margin-bottom: 20px;
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
}

.input-group {
  margin-bottom: 20px;
  position: relative;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #2c6e49;
  box-shadow: 0px 0px 5px #a8d5ba;
  outline: none;
}

button {
  padding: 12px 25px;
  background-color: #a8d5ba;
  color: #2c6e49;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #7abf95;
}

.contact-info p {
  margin-bottom: 10px;
  color: #333;
}

.contact-info iframe {
  margin-top: 20px;
  border-radius: 15px;
}

/* Footer */
footer {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background-color: #2c6e49;
  color: white;
}

footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

footer a:hover {
  color: #a8d5ba;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
}
