/* ================================
   Modern Why Choose Us Section
================================ */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* ================================
   Image Section - Modern
================================ */
.why-choose-image-modern {
    position: relative;
    z-index: 2;
}

.main-image-enhanced {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.why-choose-image-modern:hover .main-image-enhanced {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.25);
}

/* Floating Stats Card */
.floating-stats-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

.stats-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 1;
}

.stats-text h3::after {
    content: '%';
}

.stats-text p {
    margin: 0;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Decorative Circles */
.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    top: -40px;
    left: -40px;
    animation: rotateCircle 20s linear infinite;
}

.circle-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(251, 113, 133, 0.05) 100%);
    bottom: -20px;
    left: 40%;
    animation: rotateCircle 15s linear infinite reverse;
}

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

/* ================================
   Content Section - Modern
================================ */
.why-choose-content-modern {
    position: relative;
    z-index: 2;
}

.title-enhanced {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

/* ================================
   Features Grid - Compact & Modern
================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon-modern {
    background: var(--gradient-1);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-text h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ================================
   Counter Animation
================================ */
.counter {
    display: inline-block;
}

/* ================================
   Responsive Design
================================ */
@media (max-width: 1199px) {
    .title-enhanced {
        font-size: 2.2rem;
    }
    
    .floating-stats-card {
        right: -10px;
        bottom: 20px;
        padding: 20px 24px;
    }
    
    .stats-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .stats-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .title-enhanced {
        font-size: 2rem;
    }
    
    .features-grid {
        gap: 16px;
    }
    
    .feature-box {
        padding: 18px;
    }
    
    .feature-icon-modern {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .floating-stats-card {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 767px) {
    .title-enhanced {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .floating-stats-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        display: inline-flex;
    }
    
    .circle-1,
    .circle-2 {
        display: none;
    }
    
    .lead-text {
        font-size: 1rem;
    }
}

@media (max-width: 575px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .title-enhanced {
        font-size: 1.5rem;
    }
    
    .feature-box {
        padding: 16px;
    }
    
    .feature-icon-modern {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-text h6 {
        font-size: 0.95rem;
    }
    
    .feature-text p {
        font-size: 0.82rem;
    }
    
    .stats-text h3 {
        font-size: 2rem;
    }
}

/* ================================
   Optional: Alternative Layout
================================ */
.features-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list-vertical .feature-box {
    display: flex;
    align-items: center;
}
