@charset "UTF-8";
/* Hero */
.bg-gradient-hero {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
  min-height: 50vh;
}

/* Contact Cards */
.contact-info-card,
.contact-form-card,
.map-card {
  transition: all 0.35s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 0.25rem rgba(37,99,235,0.25);
}

/* Form Improvements */
.form-label {
  font-size: 0.95rem;
}

.btn-primary.rounded-pill {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}