/* Social Follow Section Styles */
.social-follow-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.follow-header {
    text-align: center;
    margin-bottom: 20px;
}

.follow-text {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    background: linear-gradient(90deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-follow-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-follow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.social-follow-btn:hover::before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: 2px solid transparent;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.messenger-btn {
    background: linear-gradient(135deg, #0084ff 0%, #44bec7 100%);
    color: white;
    border: 2px solid transparent;
}

.messenger-btn:hover {
    background: linear-gradient(135deg, #44bec7 0%, #0084ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.3);
    color: white;
    text-decoration: none;
}

.social-icon {
    margin-right: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.social-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .social-buttons-container {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .social-follow-btn {
        flex: 1;
        margin: 0 10px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .social-follow-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .follow-text {
        font-size: 16px;
    }
    
    .social-follow-btn {
        padding: 12px 15px;
    }
    
    .social-text {
        font-size: 14px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
        margin-right: 12px;
    }
}

/* Animation for button press effect */
.social-follow-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Accessibility improvements */
.social-follow-btn:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

/* Loading state (optional) */
.social-follow-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.social-follow-btn.loading .social-icon i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
