/* ================= CONTACT PAGE ONLY ================= */

/* HERO */
.contact-hero {
  background: linear-gradient(rgba(245,245,245,0.7), rgba(245,245,245,0.7)),
              url('images/contact-hero.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
}
.contact-hero h1 {
  font-size: 2.4rem;
  color: #7f5539;
}
.contact-hero .subtitle {
  font-size: 1.1rem;
  color: #7f5539;
}

/* CONTACT SECTION GRID */
.contact-section {
  padding: 40px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* CONTACT INFO */
.contact-info h2 {
  margin-bottom: 20px;
  color: #7f5539;
}
.info-box {
  background: #fff;
  padding: 16px;
  margin-bottom: 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.info-box h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #5a3f33;
}
.info-box p, 
.info-box a {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

/* CONTACT FORM */
.contact-form h2 {
  margin-bottom: 20px;
  color: #7f5539;
}
.contact-form form {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 16px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #5a3f33;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  background: #7f5539;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #b08968;
}

/* FOOTER */
footer {
  background: #f5f5f5;
  padding: 16px;
  text-align: center;
  color: #5a3f33;
  font-size: 0.9rem;
  margin-top: 30px;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  z-index: 1000;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* RESPONSIVE FIX */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 1.8rem;
  }
}
