/* 
 * Contact CSS
 * Custom styles for the contact page
 */

.contact-card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.contact-info-card, .social-card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #0d6efd;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0;
    color: #495057;
}

.social-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.25rem;
}

@media (max-width: 767.98px) {
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .social-links {
        justify-content: space-around;
    }
}
