.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 60px;
  text-align: center;
}

.contact-info {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 400px;
}
.contact {
  padding: 100px 50px;
  background: #f9fafb;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.contact h2 {
  color: #006c5f;
  font-size: 2.2em;
  margin-bottom: 10px;
}

.contact .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.7;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.contact-info, .contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex: 1 1 420px;
  max-width: 500px;
}

.contact-info h3 {
  color: #006c5f;
  margin-top: 20px;
  font-size: 1.2em;
}

.contact-info p, .contact-info li {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info i {
  color: #006c5f;
  margin-right: 8px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

/* .social-links a {
  margin-right: 15px;
  font-size: 22px;
  color: #006c5f;
  transition: color 0.3s ease;
}


.social-links a:hover {
  color: #009e84;
} */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #006c5f;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #006c5f;
  color: #fff;
  transform: translateY(-3px);
}


.contact-form h3 {
  color: #006c5f;
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.contact-form button {
  background: #006c5f;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #009e84;
}

.map {
  width: 100%;
  margin-top: 60px;
}

.map h3 {
  margin-bottom: 15px;
  color: #006c5f;
}

.footer {
  background: #0b3c49;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #00d1b2;
}

.footer-column p {
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #00d1b2;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff44;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
