/**
 * Contact Info Sidebar Styles
 * Sidebar with social media and highlights
 */

.contact-section-wrapper {
    background: linear-gradient(135deg, #1a1c20 0%, #282b30 100%);
    padding: 4rem 0;
}

.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-sidebar .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
}

.contact-info-sidebar .contact-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
}

.contact-details h3,
.studio-highlights h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #fff;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1a1c20 0%, #282b30 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-link:link,
.social-link:visited,
.social-link:active {
    color: #fff !important;
}

.social-link:hover {
    background: #fff !important;
    border-color: #888 !important;
    color: #000 !important;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-link i {
    color: #fff !important;
    font-size: 1.2rem;
    width: 20px;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: #000 !important;
}

.social-link span {
    color: #fff !important;
    transition: color 0.3s ease;
}

.social-link:hover span {
    color: #000 !important;
}

.social-link *,
.social-link i,
.social-link span {
    color: #fff !important;
}

.social-link:hover *,
.social-link:hover i,
.social-link:hover span {
    color: #000 !important;
}

.studio-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1a1c20 0%, #282b30 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: default;
}

.studio-highlights li:hover {
    background: #fff !important;
    border-color: #888 !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: translateX(3px);
}

.studio-highlights i {
    color: #fff !important;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.studio-highlights li:hover i {
    color: #888 !important;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
