/* Why Choose Us Enhanced Styles */

.choose-section-modern {
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
}

/* 1. Image Area Enhancements */
.choose-img-modern-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
}

.choose-img-modern-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.choose-main-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Floating Elements */
.choose-float-card {
    position: absolute;
    top: 20%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: float-y 4s ease-in-out infinite;
}

.choose-float-card .icon-box {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
}

.choose-float-card .text h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}

.choose-float-card .text span {
    font-size: 0.75rem;
    color: #64748b;
}

@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 2. Content Area */
.choose-content-modern {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .choose-content-modern {
        padding-right: 0;
        margin-top: 50px;
    }
}

.choose-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.choose-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.25;
}

.choose-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* 3. Modern List Items */
.choose-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-list-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.choose-list-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #3b82f6;
    transform: translateX(5px);
}

.choose-list-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.choose-list-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.choose-list-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* 4. Button */
.choose-btn {
    margin-top: 40px;
    padding: 15px 35px;
    background: #0f172a;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #0f172a;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.choose-btn:hover {
    background: transparent;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
}

.choose-btn i {
    margin-left: 10px;
}
