/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(10, 37, 88, 0.08);
    overflow: hidden;
    height: 100%;
}

.contact-info-panel {
    padding: 40px;
}

.contact-form-panel {
    padding: 40px;
    background: #fdfdfd;
    border-left: 1px solid #f0f0f0;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(245, 108, 10, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h6 {
    color: var(--primary-blue-dark);
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.info-content p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    white-space: pre-line;
}

/* Social Links */
.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-link-item {
    width: 40px;
    height: 40px;
    background: var(--primary-blue-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link-item:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    color: white;
}

/* Map Wrapper */
.map-wrapper {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    border: 1px solid #eee;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Form Styles */
.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-blue-dark);
    font-size: 0.9rem;
}

.contact-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 108, 10, 0.1);
}

.btn-send {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 108, 10, 0.3);
}

.btn-send:hover {
    background: #d45d08;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 108, 10, 0.4);
}

@media (max-width: 991px) {
    .contact-form-panel {
        border-left: none;
        border-top: 1px solid #f0f0f0;
    }
    .contact-form-panel {
        padding: 20px;
    }
}
