.contact-section {
  background: linear-gradient(180deg, rgba(0, 123, 217, 0.02) 0%, #ffffff 100%);
  min-height: 60vh;
}

.section-title {
  color: #007bd9;
  font-weight: 600;
  font-size: 1.75rem;
}

.contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 123, 217, 0.1);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 123, 217, 0.15);
}
.contact-info-card.emergency {
  border-color: rgba(220, 53, 69, 0.2);
}
.contact-info-card.emergency .icon-box {
  background: linear-gradient(135deg, #dc3545, #c82333);
}
.contact-info-card.emergency:hover {
  box-shadow: 0 8px 24px rgba(220, 53, 69, 0.2);
}
.contact-info-card .icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bd9, #12bcfa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}
.contact-info-card h5 {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  text-align: center;
}
.contact-info-card p {
  margin: 0;
  text-align: center;
}
.contact-info-card p a {
  color: #007bd9;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  transition: color 0.3s ease;
  display: inline-block;
}
.contact-info-card p a:hover {
  color: #12bcfa;
}
.contact-info-card small {
  font-size: 0.85rem;
  display: block;
  text-align: center;
}

.info-section h6 {
  color: #333;
  font-size: 1rem;
}
.info-section p {
  line-height: 1.7;
  font-size: 0.95rem;
}

.distance-table {
  background: white;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.distance-table .distance-row {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.distance-table .distance-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.distance-table .distance-row:first-child {
  padding-top: 0;
}
.distance-table .distance-row .distance-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 123, 217, 0.1), rgba(18, 188, 250, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.distance-table .distance-row .distance-icon i {
  color: #007bd9;
  font-size: 1.1rem;
}
.distance-table .distance-row .distance-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.distance-table .distance-row .distance-info .destination {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}
.distance-table .distance-row .distance-info .details {
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.contact-form-wrapper {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 123, 217, 0.08);
}
.contact-form-wrapper h3 {
  color: #007bd9;
  font-weight: 600;
  font-size: 1.5rem;
}
.contact-form-wrapper .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.contact-form-wrapper .form-control:focus {
  border-color: #007bd9;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 217, 0.15);
}
.contact-form-wrapper .form-floating label {
  color: #6c757d;
  font-size: 0.9rem;
}
.contact-form-wrapper .form-floating label i {
  opacity: 0.7;
  font-size: 0.85rem;
}
.contact-form-wrapper .btn-primary {
  background: linear-gradient(135deg, #007bd9, #12bcfa);
  border: none;
  border-radius: 8px;
  padding: 0.85rem 2rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}
.contact-form-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 217, 0.3);
}
.contact-form-wrapper .input-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 123, 217, 0.1);
}
.map-container iframe {
  display: block;
  width: 100%;
}

@media (max-width: 992px) {
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .contact-info-card {
    margin-bottom: 1rem;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .contact-form-wrapper h3 {
    font-size: 1.25rem;
  }
  .info-section {
    margin-bottom: 2rem;
  }
}/*# sourceMappingURL=contact.css.map */