/* css/contact-section.css */

.contact-section {
    background-color: #fff;
}

/* Form Inputs */
.contact-form .form-control {
    background-color: #f7f7f7 !important; /* Very light gray */
    color: var(--dark-gray);
    border-radius: 0; /* Sharp corners like screenshot */
}

.contact-form .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--primary-red); /* Red border on focus */
    background-color: #fff !important;
}

/* Buttons */
.contact-form .btn-danger {
    background-color: #c5a47e; /* Using the GOLD color from screenshot for this specific button to match style? 
                                   OR stick to Red per instructions. 
                                   INSTRUCTION SAID: "Use ONLY Primary Red: #e92126". 
                                   So I will use RED. */
    background-color: var(--primary-red); 
    border: none;
}

.contact-form .btn-danger:hover {
    background-color: var(--dark-gray);
    color: #fff;
}

.contact-form .btn-secondary {
    background-color: #a4a4a4;
    border: none;
}

/* Icon Boxes */
.icon-box-contact {
    width: 60px;
    height: 60px;
    font-size: 20px;
    transition: 0.3s ease;
    /* Screenshot has dark green/teal boxes. I used bg-dark (#353736) to match palette. */
    background-color: var(--dark-gray) !important; 
}

/* Hover Effect for Contact Items */
.d-flex:hover .icon-box-contact {
    background-color: var(--primary-red) !important; /* Turn red on hover */
    transform: translateY(-5px);
}

/* Map Styling */
.map-container iframe {
    display: block; /* Removes bottom space */
    /* Filter grayscale adds the professional, desaturated look seen in many modern corporate sites */
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

@media (max-width: 991px) {
    .contact-section {
        padding-top: 40px !important;
    }
    
    .contact-section .col-lg-7,
    .contact-section .col-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .contact-section .pe-lg-5,
    .contact-section .ps-lg-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .contact-section h2 {
        font-size: 2rem !important;
    }
    
    .contact-info-list {
        margin-top: 30px;
    }
    
    .icon-box-contact {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
    
    .contact-form .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contact-form .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
}

@media (max-width: 576px) {
    .contact-section h2 {
        font-size: 1.5rem !important;
    }
    
    .contact-section .form-control {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    
    .contact-section .btn {
        padding: 12px 20px !important;
        font-size: 14px;
    }
    
    .icon-box-contact {
        width: 45px !important;
        height: 45px !important;
        font-size: 16px !important;
    }
    
    .contact-info-list .d-flex {
        gap: 15px !important;
    }
    
    .contact-info-list h6 {
        font-size: 14px !important;
    }
    
    .contact-info-list span {
        font-size: 13px !important;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}