﻿/* ==== Section Style ==== */
.social-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/Content/Images/social-bg.jpg') no-repeat center/cover;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.social-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.social-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.social-link {
    background: #fff;
    color: #333;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    min-width: 180px;
    justify-content: center;
}

    .social-link i {
        font-size: 1.4rem;
    }

    .social-link:hover {
        transform: translateY(-8px) scale(1.05);
        color: #fff;
    }

    .social-link.phone:hover {
        background: #1e90ff;
    }

    .social-link.whatsapp:hover {
        background: #25d366;
    }

    .social-link.facebook:hover {
        background: #1877f2;
    }

    .social-link.instagram:hover {
        background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .social-link.linkedin:hover {
        background: #0a66c2;
    }

/* ==== Floating Widget ==== */
.social-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease-in-out;
}

    .social-btn:hover {
        transform: scale(1.2);
        color: #fff;
    }

    .social-btn.phone:hover {
        background: #1e90ff;
    }

    .social-btn.whatsapp:hover {
        background: #25d366;
    }

    .social-btn.facebook:hover {
        background: #1877f2;
    }

    .social-btn.instagram:hover {
        background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    }

    .social-btn.linkedin:hover {
        background: #0a66c2;
    }
