/* ================= CONTACT PAGE ================= */

.contact-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 800;
}

.contact-subtext {
  margin: 10px 0 40px;
  font-size: 16px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Info */
.contact-info {
  text-align: left;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-info i {
  color: #f2b705;
  margin-right: 8px;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 6px;
  margin-top: 20px;
}

/* Form */
.contact-form {
  background: #fff9e6;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease;

}

.contact-form h3 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-section h2 {
    font-size: 26px;
  }
}
