.contact-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
    position: relative;
}

/* Form controls */
.contact-section .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-section .form-control:focus {
    border-color: var(--bs-secondary);
    box-shadow: 0 0 0 0.25rem rgba(229, 182, 137, 0.25);
}

/* Contact info card with dark background */
.contact-section .card.bg-primary {
    background: var(--bs-primary) !important; /* Using the primary color */
}

/* Contact icons */
.contact-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Card styles */
.contact-section .card {
    border-radius: 1rem;
    height: 100%;
}

.contact-section .rounded-4 {
    border-radius: 1rem !important;
}

/* Media queries */
@media (max-width: 767px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section .display-4 {
        font-size: calc(1.375rem + 1.5vw);
    }
}
