/* ===========================
   WHY US SECTION - NEW MODERN STYLE
   =========================== */

.why-us-ultra-modern {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.why-us-ultra-modern * {
    box-sizing: border-box;
}

/* Background Decorations */
.why-us-ultra-modern::before,
.why-us-ultra-modern::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.why-us-ultra-modern::before {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(93, 173, 226, 0.1);
}

.why-us-ultra-modern::after {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.05);
}

.why-us-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-us-title strong {
    color: #00d4ff;
    background: linear-gradient(135deg, #00d4ff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-us-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.subtitle-divider {
    width: 60px;
    height: 4px;
    background: #00d4ff;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Features Grid */
.why-us-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Feature Card */
.why-us-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-us-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 123, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-us-feature-card:hover .feature-card-bg {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #00d4ff;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.why-us-feature-card:hover .feature-icon-wrapper {
    background: #00d4ff;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-badge {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 15px;
    border-radius: 15px;
}

/* Stats Section */
.why-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #0a1628;
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.3);
}

.stats-item {
    padding: 10px;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-ultra-modern {
        padding: 60px 0;
    }

    .why-us-wrapper {
        padding: 0 15px;
        margin: 0 auto;
        width: auto;
        max-width: 100%;
    }

    .why-us-title {
        font-size: 2rem;
    }

    .why-us-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        margin: 0 auto 60px;
        justify-items: center;
        /* Center grid items */
    }

    .why-us-feature-card {
        width: 100%;
        max-width: 450px;
        /* Prevent too wide cards on tablets */
        margin: 0 auto;
    }

    .why-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 1.75rem;
    }

    .why-us-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-number {
        font-size: 2rem;
    }
}