/* ==========================================================================
   Why Choose Us Section Styles
   ========================================================================== */

.why-choose-us {
    position: relative;
    width: 100%;
    min-height: 844px;
    display: flex;
    align-items: center;
    background-color: #023421;
    margin-top: -64px;
    border-radius: 0 0 0 64px;
    z-index: 8;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -64px;
    right: 0;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 0 0, transparent 64px, #023421 64px);
    transform: rotate(-90deg);
}

/* Background */
.why-choose-us__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.why-choose-us__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    border-radius: 0 0 0 64px;
}

.why-choose-us__bg-image--mobile {
    display: none;
}

@media (max-width: 768px) {
    .why-choose-us__bg-image--desktop {
        display: none;
    }

    .why-choose-us__bg-image--mobile {
        display: block;
    }
}

/* Container */
.why-choose-us__container {
    position: relative;
    z-index: 2;
    max-width: 1680px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Content Wrapper */
.why-choose-us__content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 642px;
    margin-left: auto;
    margin-right: 120px;
}

/* Header */
.why-choose-us__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-choose-us__title {
    color: #ffd46e;
    font-size: 48px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    font-weight: 400;
}

.why-choose-us__subtitle {
    color: #8abfab;
    font-size: 24px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    line-height: 1.4;
}

/* Features Grid */
.why-choose-us__features {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
}

.why-choose-us__features-row {
    display: flex;
    gap: 40px;
    width: 100%;
    justify-content: flex-start;
}

/* Feature Item */
.why-choose-us__feature {
    display: flex;
    gap: 24px;
    align-items: center;
    flex: 1;
}

/* Icon */
.why-choose-us__icon {
    width: 64px;
    height: 64px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-choose-us__icon-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Feature Content */
.why-choose-us__feature-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.why-choose-us__feature-title {
    color: #ffffff;
    font-size: 24px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    font-weight: 400;
}

.why-choose-us__feature-subtitle {
    color: rgba(254, 254, 254, 0.8);
    font-size: 16px;
    font-family: var(--font-family);
    text-align: right;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */

@media (max-width: 768px) {
    .why-choose-us {
        margin-top: -32px;
        border-radius: 0 0 0 32px;
        min-height: auto;
        padding-top: 44vw;
    }

    .why-choose-us__background {
        top: -20px;
        left: 0;
        right: 0;
        width: auto;
    }

    .why-choose-us::after {
        bottom: -32px;
        width: 32px;
        height: 32px;
        background: radial-gradient(circle at 0 0, transparent 32px, #023421 32px);
    }

    .why-choose-us__container {
        padding: 40px 20px;
    }

    .why-choose-us__content {
        gap: 40px;
        margin: 0;
    }

    .why-choose-us__header {
        gap: 10px;
    }

    .why-choose-us__title {
        font-size: 40px;
        line-height: 1;
        text-align: right;
    }

    .why-choose-us__subtitle {
        font-size: 20px;
        line-height: 28px;
        text-align: right;
    }

    .why-choose-us__features {
        gap: 32px;
    }

    .why-choose-us__features-row {
        flex-direction: column;
        gap: 32px;
    }

    .why-choose-us__feature {
        align-items: center;
    }

    .why-choose-us__feature-content {
        align-items: flex-start;
    }

    .why-choose-us__bg-image {
        height: auto;
        object-position: top;
        border-radius: 0;
    }

    .why-choose-us__feature-title {
        font-size: 20px;
        text-align: center;
    }

    .why-choose-us__feature-subtitle {
        font-size: 16px;
        line-height: 22px;
        text-align: right;
    }

    .why-choose-us__icon {
        width: 43px;
        height: 43px;
        margin-right: 10px;
    }
}

