/* ========== Why Choose Us Unique Section ========== */
.wcus-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background-color: #f4f4f4;
}

.wcus-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
}

.wcus-title::after {
    content: '';
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #14b8a6);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    border-radius: 2px;
}

.wcus-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.wcus-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    width: 260px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease-in-out;
    text-align: center;
    cursor: pointer;
    border-top: 4px solid transparent;
}

.wcus-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border-top: 4px solid #6366f1;
}

.wcus-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.wcus-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.wcus-card-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.5;
}

/* Popup */
#wcus-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #6366f1;
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    animation: wcus-fadeIn 0.4s ease;
}

@keyframes wcus-fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

@media (max-width: 768px) {
    .wcus-container {
        flex-direction: column;
        align-items: center;
    }
}
