/* Contact Hero */
.contact-hero {
    height: 60vh;
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    position: relative;
}

.contact-quote-section{
    background-color: var(--background-section);
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    color: var(--Blue-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secBule);
}

.contact-info-card .social-icons {
  display: flex;
  gap: 5px;
}

.contact-info-card .social-icon {
  text-decoration: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  background: var(--secBule);
}

.contact-info-card .social-icon:hover {
  background: var(--secBule);
  transform: translateY(-3px);
}

/* Form Tabs */
.form-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.nav-tabs {
    border-bottom: none;
    background: #f8f9fa;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--Blue-color);
    font-weight: 600;
    padding: 15px 25px;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid var(--secBule);
}

/* Form Styles */
.form-floating label {
    color: #666;
}

.form-control, .form-select {
    border: 1px solid #ddd;
    padding: 15px;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secBule);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
}

@media (max-width: 767px) {
    .contact-hero {
        height: 40vh;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}