/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    padding: 80px 0;
    background: var(--gradient-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    margin-bottom: 30px;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    border-color: var(--accent-color);
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.why-title {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.why-text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}