/* HERO */
.contact-hero {
  height: 60vh;
  background: url("../images/contact-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f5c4cdd, #0f5c4caa);
}

.contact-hero-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  color: #fff;
}

.contact-hero h1 {
  font-size: 48px;
  margin: 20px 0;
}

/* CONTACT */
.contact-section {
  padding: 80px 20px;
  background: #f7f5f0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 16px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.btn-primary {
  background: #c9a227;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
