/* ========================================
   CONTACT PAGE STYLES
   Consolidated from inline styles in contact.php
   ======================================== */

/* Social icon hover */
.social-icon:hover {
    background-color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 163, 218, 0.4);
}

/* Button hover effect */
.btn-primary:hover {
    background: linear-gradient(135deg, #0582b8, var(--primary)) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 163, 218, 0.4);
}

/* Form input focus */
.form-control:focus {
    border-color: #0a1e3d !important;
    box-shadow: 0 0 0 0.2rem rgba(10, 30, 61, 0.25) !important;
    outline: none !important;
}

.form-control {
    outline: none !important;
}

/* Service dropdown selected option highlight */
#service option:checked,
#service option:hover {
    background-color: #0a1e3d !important;
    color: #fff !important;
}

select.form-control {
    accent-color: #0a1e3d;
}

/* Custom Select Dropdown */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    font-family: 'Inter', sans-serif;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #6c757d;
}

.custom-select-trigger.selected {
    color: #212529;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: #0a1e3d;
    box-shadow: 0 0 0 0.2rem rgba(10, 30, 61, 0.15);
}

.custom-select-arrow {
    transition: transform 0.25s ease;
    font-size: 13px;
    color: #0a1e3d;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(10, 30, 61, 0.12);
    list-style: none;
    margin: 0;
    padding: 6px 0;
    z-index: 999;
    max-height: none;
    overflow-y: visible;
}

.custom-select-wrapper.open .custom-select-options {
    display: block;
}

.custom-select-options li {
    padding: 7px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #212529;
    transition: background 0.15s, color 0.15s;
}

.custom-select-options li:hover {
    background-color: #0a1e3d;
    color: #fff;
}

.custom-select-options li.active {
    background-color: #0a1e3d;
    color: #fff;
    font-weight: 600;
}

/* Feature icons hover */
.feature-icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info-card {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-info-card {
        padding: 2rem !important;
    }

    .contact-map-row {
        margin-top: 2rem !important;
    }
}
