/* ===== CONTACT PAGE PROFESSIONAL 2-COLUMN LAYOUT ===== */
#contact {
  padding: 80px 20px;
  background: #f9fafc;
  font-family: 'Roboto', sans-serif;
}

#contact h1 {
  font-size: 2.0rem;
  margin-bottom: 20px;
  color: #2e1503; /* brand color */
  font-weight: 700;
  text-align: center;
}

#contact p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #8C6A34;
  line-height: 1.7;
  text-align: center;
}

/* Two-column layout */
.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Left column: Contact Details */
.contact-left {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact row style */
.detail-box {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.detail-box i {
  font-size: 24px;
  background: #008cff;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}

.detail-box h3 {
  font-size: 1.1rem;
  margin: 0 0 4px 0;
  font-weight: 600;
  color: #65350f;
}

.detail-box p {
  font-size: 0.95rem;
  color: #8C6A34;
  margin: 0;
  line-height: 1.4;
}

/* Clickable links */
.detail-box a {
  color: #8C6A34;
  text-decoration: none;
  font-weight: 500;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background: #25d366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 35px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 150px;
}

.whatsapp-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Right column: Map */
.contact-right {
  flex: 1;
  min-width: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  display: block;
}

/* ===== Responsive ===== */
/* ===== RESPONSIVENESS ===== */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  #contact {
    padding: 60px 20px;
  }

  #contact h1 {
    font-size: 1.8rem;
  }

  #contact p {
    font-size: 1.15rem;
  }

  .contact-wrapper {
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {

  #contact {
    padding: 60px 20px;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 600px;
  }

  .whatsapp-btn {
    width: 80px;            /* allow it to fit text naturally */
    min-width: 150px;       /* won’t shrink below desktop size */
    align-self: center; 
  }

  .detail-box i{
    font-size: 12px;
  }
}

/* Mobile devices */
@media (max-width: 480px) {
  #contact {
    padding: 50px 20px;
  }

  #contact h1 {
    font-size: 1.6rem;
  }

  #contact p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .detail-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .detail-box i {
    margin: 0 0 10px 0;
  }

  .whatsapp-btn {
    width: 80px;            /* full width for better tap area */
    padding: 12px; 
    font-size: 0.95rem;
  }
}
