/* Why Choose Us Section - Split Layout */
.why-choose-section {
    padding: 2rem 0;
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.why-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    background: rgba(5, 199, 242, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--brand-primary-alt);
    line-height: 1.2;
}

.why-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Image Composition */
.why-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.main-why-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.why-image-wrapper:hover .main-why-img {
    transform: scale(1.03);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    max-width: 240px;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--brand-primary);
    /* Use solid color or brand gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    line-height: 1.2;
    color: var(--brand-primary-dark);
}

/* Feature List */
.why-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(5, 199, 242, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.why-feature-item:hover .feature-icon {
    background: var(--brand-primary);
    color: white;
    transform: rotateY(180deg);
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-primary-dark);
}

.feature-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-title {
        font-size: 2.8rem;
    }

    .why-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .why-image-wrapper {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .why-features-list {
        gap: 1.5rem;
    }

    .feature-text h3 {
        font-size: 1.1rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 2.5rem 0;
    }

    .why-choose-title {
        font-size: 2.6rem;
    }

    .why-features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-content {
        padding-left: 0 !important;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 1rem 0;
    }

    .why-choose-title {
        font-size: 2.4rem;
    }

    .why-desc {
        font-size: 0.8rem;
    }

    .why-image-wrapper {
        display:none;
        border-radius: 20px;
        width: 100%;
    }

    .why-features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .floating-badge {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 0.75rem 1rem;
    }

    .why-feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .feature-text h3 {
        font-size: 1.05rem;
    }

    .feature-text p {
        font-size: 0.7rem;
    }
}