/* Contact Banner Styles */
.contact-banner {
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.contact-banner-bg {
  object-fit: cover;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.contact-banner-overlay {
  background: rgba(24, 49, 63, 0.65);
  z-index: 2;
}
.contact-banner .container {
  z-index: 3;
  position: relative;
}
.contact-label {
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  color: #222;
  border-radius: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: inline-block;
}

/* Contact Info Boxes */
.bg-light-blue {
  background: #eaf3fb !important;
}
.bg-light-peach {
  background: #fff6ee !important;
}
.contact-box {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-box:hover {
  box-shadow: 0 8px 32px rgba(255, 112, 67, 0.12);
  transform: translateY(-4px) scale(1.01);
}
.contact-icon-box {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #ff7043;
}
.text-orange {
  color: #ff7043 !important;
}

/* Map Section */
.contact-map-section iframe {
  width: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

/* Inquiry Form */
.contact-form-section {
  background: #eaf3fb;
}
.contact-form .form-control {
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  font-size: 1.05rem;
  box-shadow: none;
}
.contact-form .form-control:focus {
  border-color: #ff7043;
  box-shadow: 0 0 0 0.1rem rgba(255, 112, 67, 0.12);
}
.contact-form .input-group-text {
  background: #fff;
  border: none;
  color: #ff7043;
  font-size: 1.1rem;
  border-radius: 0 12px 12px 0;
}
.btn-orange {
  background: #ff7043;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.btn-orange:hover {
  background: #125875;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-banner {
    min-height: 220px;
  }
  .contact-label {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
  }
  .contact-icon-box {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .contact-box {
    min-height: 120px;
    padding: 1.2rem 0.5rem;
  }
}
