.social-links {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Кнопка "Показать контакты" */
.show-contacts-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    position: relative;
}

.show-contacts-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.5);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.show-contacts-btn i {
    font-size: 1.8rem;
    color: white;
    transition: transform 0.3s ease;
}

.show-contacts-btn.active i {
    transform: rotate(180deg);
}

/* Выпадающий список контактов */
.contacts-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 10px;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contacts-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

.contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

.contact-link {
    text-decoration: none;
    color: inherit;
}

/* Адаптивность */
@media (max-width: 768px) {
    .social-links {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }
    
    .show-contacts-btn {
        width: 50px;
        height: 50px;
    }
    
    .show-contacts-btn i {
        font-size: 1.6rem;
    }
    
    .contacts-dropdown {
        min-width: 220px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .social-links {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .show-contacts-btn {
        width: 45px;
        height: 45px;
    }
    
    .show-contacts-btn i {
        font-size: 1.4rem;
    }
    
    .contacts-dropdown {
        min-width: 200px;
        right: -15px;
    }
} 