/* HERO */
.contact-hero {
  height: 50vh;
  background: url('../assets/images/chocolate cake.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(27,94,32,0.85),
    rgba(0,0,0,0.6)
  );
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

/* CONTACT */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
}

.contact-form button {
  margin-top: 15px;
}

/* INFO */
.contact-info {
  padding: 20px;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-box {
  margin-top: 20px;
  padding: 15px;
  background: var(--green-soft);
  border-radius: 10px;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* hover */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
}