/* ===============================
   WHY CHOOSE - SPLIT SCREEN
   =============================== */

.why-choose {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #F0F4F8 100%);
    position: relative;
    overflow: hidden;
}

.why-choose__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.why-choose__header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose__badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(214, 32, 39, 0.15), rgba(214, 32, 39, 0.12));
    color: #D62027;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(214, 32, 39, 0.3);
}

.why-choose__header h2 {
    font-size: 2.5rem;
    color: #212529;
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .why-choose__header h2 {
        font-size: 1.8rem;
    }
}

.why-choose__intro {
    font-size: 1.1rem;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Split Layout */
.why-choose__split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .why-choose__split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose__visual {
        order: -1;
        max-height: 400px;
    }
}

/* Benefits List */
.why-choose__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    position: relative;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(214, 32, 39, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(214, 32, 39, 0.4);
    box-shadow: 0 8px 32px rgba(214, 32, 39, 0.12);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover .benefit-item__icon {
    background: linear-gradient(135deg, #D62027, darken(#D62027, 10%));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(214, 32, 39, 0.4);
}

.benefit-item:hover .benefit-item__icon i {
    color: #fff;
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(214, 32, 39, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item__icon i {
    font-size: 1.75rem;
    color: #D62027;
    transition: all 0.3s ease;
}

.benefit-item__content {
    flex: 1;
}

.benefit-item__content h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-item__content p {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Visual Side - Image */
.why-choose__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose__image:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .why-choose__visual {
        max-height: 400px;
    }
    
    .why-choose__image {
        max-height: 400px;
        object-fit: cover;
    }
}


/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item {
    animation: fadeInUp 0.8s ease-out backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 0;
    }
    
    .why-choose__container {
        padding: 0 1.5rem;
    }
    
    .why-choose__header {
        margin-bottom: 3rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .benefit-item__icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-item__icon i {
        font-size: 1.5rem;
    }
    
    .benefit-item__content h3 {
        font-size: 1.15rem;
    }
    
    .benefit-item__content p {
        font-size: 0.9rem;
    }
}
