/* ==========================================================================
   Contact Page Styling
   ========================================================================== */

.contact-wrapper {
    position: relative;
    padding: 90px 0 80px;
    margin: 0;
    background-color: #f8f9fc;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(253, 126, 20, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 85%, rgba(255, 228, 104, 0.15) 0%, transparent 40%),
        radial-gradient(circle, rgba(39, 38, 48, 0.07) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
    background-position: 0 0, 0 0, 0 0;
}

/* Info Cards */
.contact-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--bs-orange), #ff9800);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto;
    box-shadow: 0 6px 15px rgba(253, 126, 20, 0.3);
}

.contact-link {
    color: var(--bs-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--bs-orange);
}

/* Enquiry Form Card */
.enquiry-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.enquiry-title {
    color: var(--bs-dark);
    font-size: 1.5rem;
    letter-spacing: -0.3px;
}

.title-line {
    width: 50px;
    height: 3px;
    background-color: var(--bs-danger);
    border-radius: 2px;
}

/* Inputs & Selects */
.custom-input {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: var(--bs-dark);
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-input:focus {
    border-color: var(--bs-orange);
    box-shadow: 0 0 0 0.25rem rgba(253, 126, 20, 0.15);
    background-color: #ffffff;
}

/* Submit Button (Matching Career Page) */
.btn-submit {
    background: linear-gradient(135deg, var(--bs-orange) 0%, #e65100 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #e65100 0%, var(--bs-orange) 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 126, 20, 0.45);
}

/* Map Card */
.map-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    min-height: 450px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* Responsive Handling */
@media (max-width: 991.98px) {
    .contact-wrapper {
        padding: 60px 0 50px;
    }
    
    .enquiry-card {
        padding: 1.75rem 1.25rem;
    }
    
    .map-card {
        min-height: 350px;
    }
}