/* Social Media Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    text-decoration: none;
    display: inline-block;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-circle i {
    font-size: 1.2rem;
    color: white;
    transition: color 0.3s ease;
    z-index: 1;
    position: relative;
}

/* Hover Effects */
.social-btn:hover .social-circle {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: white;
}

.social-btn:hover .social-circle::before {
    transform: scale(1);
}

.social-btn:hover .social-circle i {
    color: #1E90FF;
}

/* Specific Brand Hover Colors (Optional - if you want brand specific hovers) */
.social-btn:hover[aria-label*="Facebook"] .social-circle i {
    color: #1877F2;
}

.social-btn:hover[aria-label*="Twitter"],
.social-btn:hover[aria-label*="X"] .social-circle i {
    color: #000000;
}

.social-btn:hover[aria-label*="Instagram"] .social-circle i {
    color: #E4405F;
}

.social-btn:hover[aria-label*="LinkedIn"] .social-circle i {
    color: #0077B5;
}

.social-btn:hover[aria-label*="YouTube"] .social-circle i {
    color: #FF0000;
}