/* Choose Section */
.choose-section {
    padding: 40px 0px 60px;
    background: #ffffff;
}

.choose-section--gray {
    background: #FAFAFA;
}

.choose-container {
   padding: 0 360px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.choose-content {
    display: flex;
    gap: 60px;
}

.choose-content--gap-40 {
    gap: 40px;
}

.choose-item {
    flex: 1;
    min-width: 0; /* Cho phép text wrap khi cần */
}

.choose-img {
    flex: 1;
    min-width: 300px; /* Đảm bảo hình ảnh có kích thước tối thiểu */
    display: flex;
    align-items: flex-start;
}

.choose-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.choose-title {
    font-family: "Noto Sans JP";
    font-size: 48px;
    font-weight: 700;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0 0 16px 0;
    text-align: left;
}

.ranking-icon-green-check{
    padding: 0px 24px;
    margin: 0;
    border-radius: 12px;
    border: 1px solid #EDEDED;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.ranking-icon-green-check--none{
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: none;
    border-radius: 12px;
}

.ranking-icon-green-check li{
    margin: 0;
}

.choose-item-title {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    color: #14722a;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.choose-item-text {
    font-family: "Noto Sans JP";
    font-size: 20px;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0;
}

/* Points Section */
.choose-points {
    padding: 40px 0 80px;
    background: #FAFAFA;
}

.choose-points__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 360px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 32px;
    align-items: start;
}


.choose-points__title {
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    color: #1c1c1c;
}

.choose-point-card__text {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0;
}

.choose-points__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-point-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 18px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.choose-point-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.choose-point-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E8F1EA;
    color: #14722A;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    border-radius: 6px;
    padding: 6px 10px;
    line-height: 1;
}

.choose-point-card__title {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.5;
}

.choose-point-card__list {

    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.choose-point-card__list li{
    font-family: "Noto Sans JP";
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #1c1c1c;
}

.choose-point-card__note {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0;
}

/* Feature Section (弁護士が推奨する探偵社の特徴) */
.choose-feature {
    background: #ffffff;
    padding: 60px 0 80px;
}

.choose-feature__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 360px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.choose-feature__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    width: 100%;
}

.choose-feature__title {
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
    color: #1c1c1c;
}

.choose-feature__subtitle {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    color: #14722a;
    margin: 0;
    line-height: 1.6;
}

.choose-feature__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.choose-feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.choose-feature-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.choose-feature-card__text {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0;
}

.choose-feature__bottom {
    width: 100%;
    background: #e8f1ea;
    border-radius: 8px;
    padding: 16px 20px;
}

.choose-feature__bottom-text {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 400;
    color: #1c1c1c;
    line-height: 1.5;
    margin: 0;
}

.chosse-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 30px 0 0 10px; /* keep bullets inside */
    list-style: disc;
    list-style-position: inside;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.chosse-list li{
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #1c1c1c;
}
/* Bottom checklist */
.choose-section__bottom {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid #e5e5e5;
}

.choose-bottom__title {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.5;
}

.choose-bottom__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.choose-bottom-card {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

.choose-bottom-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.choose-bottom-card__text {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 400;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.5;
    width: 100%;
}
.choose-item--center {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}
@media (max-width: 1200px) {
    .choose-bottom__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-section__bottom {
        margin-top: 32px;
    }
    .choose-bottom-card {
        padding: 12px 14px;
    }
    .choose-bottom__cards {
        grid-template-columns: 1fr;
    }
    .choose-point-card__list{
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px;
    }
    .choose-feature__bottom{
        width: auto;
    }
}

/* Checklist Section */
.choose-checklist {
    padding: 60px 0 80px;
    background: #fafafa;
}

.choose-checklist__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 360px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.choose-checklist__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.choose-checklist__title {
    font-family: "Noto Sans JP";
    font-size: 40px;
    font-weight: 800;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.4;
}

.choose-checklist__subtitle {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.6;
}

.choose-checklist__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.choose-checklist__card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.choose-checklist__card-title {
    display: flex;
    align-items: start;
    justify-content: start;
    width: 100%;
}

.choose-checklist__card-content {
    width: 100%;
}
.choose-checklist__card-title-text {
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 12px;
}

.choose-checklist__icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
    position: relative;
}

.choose-checklist__icon--bell::before {
    content: "";
    background-image: url('../images/icons/ringtone-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.choose-checklist__icon--file::before {
    content: "";
    background-image: url('../images/icons/clipboard-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.choose-checklist__icon--quote::before {
    content: "";
    background-image: url('../images/icons/warning-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.choose-checklist__icon--report::before {
    content: "";
    background-image: url('../images/icons/file-star-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.choose-checklist__icon--law::before {
    content: "";
    background-image: url('../images/choose/icons/gavel.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}
.choose-checklist__icon--star::before {
    content: "";
    background-image: url('../images/icons/star-green.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.choose-checklist__text {
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 400;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.5;
}

.choose-checklist__cta {
    display: flex;
    justify-content: center;
}

.choose-checklist__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #2681C4;
    color: #ffffff;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border: none;
    cursor: pointer;
}

.choose-checklist__btn:hover {
    background: #14722A;
}

.choose-checklist__btn-arrow {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1200px) {
    .choose-checklist__container {
        padding: 0 40px;
    }
    .choose-checklist__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-checklist {
        padding: 40px 0 60px;
    }
    .choose-checklist__container {
        padding: 0 20px;
        gap: 24px;
    }
    .choose-checklist__title {
        font-size: 32px;
    }
    .choose-checklist__text,
    .choose-bottom-card__text,
    .chosse-list li,
    .choose-item-text,
    .choose-checklist__subtitle {
        font-size: 16px;
    }
    .choose-checklist__grid {
        grid-template-columns: 1fr;
    }
    .choose-checklist__card {
        padding: 14px 12px;
    }
    .choose-checklist__cta{
        width: 100%;
    }
    .choose-checklist__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .choose-checklist__container {
        padding: 0 16px;
    }
    .choose-checklist__title {
        font-size: 28px;
    }
    .choose-checklist__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero banner bottom */
.choose-hero-banner {
    position: relative;
    margin: 0;
    padding: 60px 0;
    background: url('../images/banner/hero-banner-bottom.webp') center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.choose-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.3) 100%);
}

.choose-hero-banner__content {
    position: relative;
    margin: 0 auto;
    padding: 0 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.choose-hero-banner__title {
    font-family: "Noto Sans JP";
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
}

.choose-hero-banner__text {
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}

.choose-hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 16px;
    background: #2681C4;
    color: #ffffff;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.choose-hero-banner__btn:hover {
    background: #14722A;
}
.location-more-text{
    color: #ffffff;
  }
@media (max-width: 1200px) {
    .choose-hero-banner__content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .choose-hero-banner {
        padding: 40px 0;
    }
    .choose-hero-banner__title {
        font-size: 26px;
    }
    .choose-hero-banner__text {
        font-size: 14px;
    }
    .choose-hero-banner__content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .choose-hero-banner__title {
        font-size: 22px;
    }
    .choose-hero-banner__btn {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .choose-feature__container {
        padding: 0 40px;
    }
    .choose-feature__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .choose-feature {
        padding: 40px 0 60px;
    }
    .choose-feature__container {
        padding: 0 20px;
        gap: 24px;
    }
    .choose-feature__title {
        font-size: 32px;
    }
    .choose-feature__subtitle {
        font-size: 18px;
    }
    .choose-feature__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .choose-feature__container {
        padding: 0 16px;
    }
    .choose-feature__title {
        font-size: 32px;
    }
    .choose-feature__subtitle {
        font-size: 18px;
    }
    .choose-feature-card__text {
        font-size: 18px;
    }
    .choose-feature__bottom-text {
        font-size: 16px;
    }
}

/* Responsive for points */
@media (max-width: 1200px) {
    .choose-points__container {
        padding: 0 40px;
        grid-template-columns: 1fr;
    }
    .choose-points__heading {
        position: static;
    }
}

@media (max-width: 768px) {
    .choose-points {
        padding: 32px 0 60px;
    }
    .choose-points__container {
        padding: 0 20px;
        gap: 24px;
    }
    .choose-points__title {
        font-size: 32px;
    }
    .choose-point-card {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .choose-points__container {
        padding: 0 16px;
    }
    .choose-points__title {
        font-size: 32px;
    }
    .choose-point-card__badge {
        font-size: 16px;
        padding: 6px 8px;
    }
    .choose-point-card__title {
        font-size: 20px;
    }
    .choose-point-card__note {
        font-size: 13px;
    }
    .choose-point-card__list li,
    .choose-point-card__text{
        font-size: 16px;
    }
}
/* Responsive */
@media (max-width: 992px) {
    .chosse-hero {
        grid-template-columns: 1fr !important;
        padding: 32px 16px 16px;
    }
    .chosse-hero__image {
        justify-content: center;
    }
    .chosse-hero__img {
        max-width: 100%;
    }
    .choose-section {
        padding: 32px 0px 48px;
    }
    .chosse-hero__content-text{
        padding: 0px;
    }
    .choose-container {
        padding: 0px;
        gap: 8px ;
    }
    .choose-title{
        font-size: 32px;
        margin-bottom: 0px;
    }
    .choose-content {
        gap:20px;
    }
}

@media (max-width: 768px) {
    .chosse-hero__title {
        font-size: 40px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .chosse-hero__eyebrow {
        font-size: 14px;
    }
    .chosse-hero__text {
        font-size: 14px;
        line-height: 1.65;
    }

}

@media (max-width: 480px) {
    .chosse-hero {
        padding: 24px 16px 12px;
        gap: 16px;
    }
    .chosse-hero__title {
        font-size: 40px;
    }
    .chosse-hero__text {
        font-size: 13px;
        line-height: 1.6;
    }
    .choose-section {
        padding: 28px 16px 36px;
    }

}