/* Why Choose Us Section */
.why-choose-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
}

.why-choose-section .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.why-choose-section .section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3675ff;
    border-radius: 2px;
}

.why-choose-section>h2 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #000000;
    max-width: 700px;
}

.why-choose-content {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: #e5e7eb;
}

.why-choose-images {
    display: block;
    height: 100%;
    width: 100%;
}

.why-choose-images img,
.why-choose-content>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-card {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    opacity: 0;
    transition: all 0.6s ease;
}

.benefits-card.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: #3675ff;
    fill: none;
    stroke-width: 2;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000000;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #667085;
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 20px;
    }

    .why-choose-section>h2 {
        font-size: 32px;
        margin-bottom: 40px;
        line-height: 1.25;
    }

    .why-choose-content {
        aspect-ratio: 4 / 5;
        /* Taller portrait ratio */
        border-radius: 24px;
    }

    .benefits-card {
        position: absolute;
        /* Overlay */
        bottom: 12px;
        left: 12px;
        right: 12px;
        top: auto;
        transform: none;
        max-width: none;
        width: auto;

        background: rgba(255, 255, 255, 0.95);
        /* Slight transparency */
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

        margin-top: 0;
    }

    .benefits-card.visible {
        transform: none;
        opacity: 1;
    }

    .benefit-item {
        margin-bottom: 12px;
        gap: 12px;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
    }

    .benefit-item:last-child {
        margin-bottom: 0;
    }

    .benefit-icon {
        width: 20px;
        height: 20px;
    }

    .benefit-content h3 {
        font-size: 16px;
        /* Smaller heading */
        margin-bottom: 2px;
    }

    .benefit-content p {
        font-size: 14px;
        /* Smaller body text */
        line-height: 1.4;
    }
}