/* ==========================================================================
   CONTACT US PAGE STYLES (contact.css)
   ========================================================================== */

/* 1. Hero Banner */
.contact-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

/* 2. Info Cards */
.contact-info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  background-color: #ffffff;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.85rem 1.5rem rgba(13, 110, 253, 0.1) !important;
}

.contact-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3. Form Styling */
.contact-form-card {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.08) !important;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-color: #dee2e6;
  font-size: 0.95rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

/* 4. Map Container */
.map-wrapper {
  background-color: #e9ecef;
}

.map-wrapper iframe {
  display: block;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .contact-hero {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .map-wrapper iframe {
    min-height: 350px !important;
  }
}