/* Contact Info Sidebar Styles */
.contact-info-sidebar {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-info-header p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-icon span {
    font-size: 20px;
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content h6 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.contact-info-content p {
    margin: 0;
    font-size: 14px;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .contact-info-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info-sidebar {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .contact-info-header h4 {
        font-size: 20px;
    }
    
    .contact-info-item {
        padding: 15px;
        gap: 12px;
    }
    
    .contact-info-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-info-icon span {
        font-size: 18px;
    }
    
    .contact-info-content h6 {
        font-size: 15px;
    }
    
    .contact-info-content p {
        font-size: 13px;
    }
}

/* Dark theme support */
.theme--dark .contact-info-sidebar {
    background: #2d2d2d;
    border-color: #404040;
}

.theme--dark .contact-info-header {
    border-bottom-color: #404040;
}

.theme--dark .contact-info-header h4 {
    color: #ffffff;
}

.theme--dark .contact-info-header p {
    color: #cccccc;
}

.theme--dark .contact-info-item {
    background: #3d3d3d;
    border-color: #555555;
}

.theme--dark .contact-info-item:hover {
    border-color: #667eea;
}

.theme--dark .contact-info-content h6 {
    color: #ffffff;
}

.theme--dark .contact-info-content p {
    color: #cccccc;
}
