/* Why Choose Us Professional Section */
.why-choose-professional {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Section Header */
.section-header-why {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge-why {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-badge-why i {
    font-size: 16px;
}

.section-title-why {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.gradient-text-why {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-why {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Grid */
.why-choose-grid-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card-pro {
    position: relative;
}

.why-card-inner {
    position: relative;
    height: 100%;
    padding: 40px 35px;
    background: white;
    border-radius: 24px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s ease;
    overflow: hidden;
}

.why-card-pro:hover .why-card-inner {
    border-color: #667eea;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.why-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.why-icon-pro {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    color: white;
    font-size: 28px;
    position: relative;
    transition: all 0.4s ease;
}

.why-card-pro:hover .why-icon-pro {
    transform: scale(1.1) rotate(-5deg);
}

.why-icon-pro::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
}

.why-number {
    font-size: 48px;
    font-weight: 800;
    color: #f5f5f5;
    line-height: 1;
    transition: all 0.4s ease;
}

.why-card-pro:hover .why-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-card-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-card-inner p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Card Decoration */
.why-card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    transition: all 0.4s ease;
}

.why-card-pro:hover .why-card-decoration {
    transform: translate(30%, 30%) scale(1.2);
    opacity: 0.8;
}

/* Background Decorations */
.why-bg-decoration-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
    filter: blur(60px);
}

.why-bg-decoration-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
    filter: blur(60px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-professional {
        padding: 80px 0;
    }

    .section-title-why {
        font-size: 36px;
    }

    .why-choose-grid-pro {
        gap: 25px;
    }

    .why-card-inner {
        padding: 35px 30px;
    }

    .why-icon-pro {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .why-number {
        font-size: 42px;
    }

    .why-card-inner h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-professional {
        padding: 60px 0;
    }

    .section-header-why {
        margin-bottom: 40px;
    }

    .section-title-why {
        font-size: 32px;
    }

    .section-subtitle-why {
        font-size: 16px;
    }

    .why-choose-grid-pro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card-inner {
        padding: 30px 25px;
    }

    .why-icon-pro {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .why-number {
        font-size: 36px;
    }

    .why-card-inner h3 {
        font-size: 18px;
    }

    .why-card-inner p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .section-title-why {
        font-size: 28px;
    }

    .section-badge-why {
        font-size: 12px;
        padding: 8px 16px;
    }

    .why-card-inner {
        padding: 25px 20px;
    }

    .why-icon-wrapper {
        margin-bottom: 20px;
    }

    .why-icon-pro {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .why-number {
        font-size: 32px;
    }
}
