/* ===== Contact Info & Map ===== */
.contact-us {
  padding: 60px 0 30px 0;
}

.contact-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* Info card narrower */
.contact-info-card {
  flex: 0 0 30%;
  background: linear-gradient(135deg, #ffffff, #f5f7fc);
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-left: 5px solid #2B3A55;
}

.contact-info-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2B3A55;
  margin-bottom: 20px;
}

.contact-info-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.contact-info-card p strong u {
  font-size: 17px;
  color: #2B3A55;
}

.contact-info-card .closed {
  color: #d9534f;
  font-weight: 700;
}

.contact-map {
  flex: 1 1 70%;
  display: flex;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* ===== Forms Wrapper ===== */
.forms-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Each form takes ~48% on desktop */
.contact-forms h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0D47A1; /* green */
    margin: 0 auto 40px auto;
    text-align: center;
    max-width: 800px;
    position: relative;
}

.contact-forms h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #2196F3;
    margin: 10px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.5);
}

.forms-wrapper form {
  flex: 1 1 48%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forms-wrapper form:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Appointment Form: left (blue theme) */
.appointment-form {
  background: #E8F4FF; /* light blue */
  border: 1px solid #7EC8E3;
}

.appointment-form h3 {
  color: #2196F3;
  margin-bottom: 15px;
}

.appointment-form .appointment-note {
  font-size: 14px;
  color: #0D47A1;
  margin-bottom: 15px;
  font-style: italic;
}

/* Inputs and textarea for appointment form */
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #7EC8E3;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: #2196F3;
  outline: none;
}

/* Appointment submit button */
.btn-appointment {
  background: #2196F3;
  color: #fff; /* text color white */
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-appointment:hover {
  background: #0D47A1;
  color: #fff; /* keep text white on hover */
}

/* Enquiry Form: right (green theme) */
.contact-form {
  background: #E8FFF0; /* light green */
  border: 1px solid #7EDFA3;
}

.contact-form h3 {
  color: #4CAF50;
  margin-bottom: 15px;
}

/* Inputs and textarea for enquiry form */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #7EDFA3;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #4CAF50;
  outline: none;
}

/* Enquiry submit button */
.btn-submit {
  background: #4CAF50;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #087f23;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .forms-wrapper {
    flex-direction: column;
  }

  .forms-wrapper form {
    flex: 1 1 100%;
  }
}