body {
  color: #21106e;
}

/* HERO */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url('photos/WhatsApp\ Image\ 2026-03-20\ at\ 5.12.19\ PM.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

/* CONTACT LAYOUT */
.contact-container {
  display: flex;
  gap: 40px;
  padding: 60px 8%;
  flex-wrap: wrap;
}

/* INFO */
.contact-info {
  flex: 1 1 400px;
}

.contact-info h2 {
  color: #0a8f5c;
  margin-bottom: 10px;
}

.info-box p {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* FORM */
.contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0a8f5c;
  outline: none;
}

.contact-form button {
  padding: 12px;
  border: none;
  background: #0a8f5c;
  color: #fff;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #066c45;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* CTA */
.contact-cta {
  text-align: center;
  padding: 50px;
  background: #0a8f5c;
  color: #fff;
}

.contact-cta a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: #fff;
  color: #0a8f5c;
  border-radius: 25px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 1s ease forwards;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideLeft 1s ease forwards;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideRight 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}