/* ==============================
   CHOOSE SECTION
============================== */

.choose-section {
    background-image: url("assets/images/choose-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 80px 0;
    position: relative;
}

/* Overlay */
.choose-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Inner content */
.choose-section .content-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    color: #fff;
}

/* ==============================
   HEADING
============================== */

.choose-section .content-heading {
    padding-bottom: 30px;
}

.choose-section .content-heading h2 {
    font-size: 36px;
    line-height: 1.3;
    font-family: Caudex, "Caudex Fallback";
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}

.choose-section .content-heading p {
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    color: #fff;
}

/* ==============================
   GRID ITEMS
============================== */

.choose-box-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 25px;
    text-align: center;
    padding-top: 20px;
}

.choose-box-item img {
    width: 70px;
    height: auto;
    margin-bottom: 12px;
    filter: invert(63%) sepia(18%) saturate(603%) hue-rotate(336deg) brightness(93%) contrast(87%);
}

.choose-box-item h4 {
    text-transform: uppercase;
    font-family: "Noto Sans", "Noto Sans Fallback";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* ==============================
   TABLET (≤ 992px)
============================== */

@media (max-width: 992px) {

    .choose-section {
        padding: 60px 0;
    }

    .choose-section .content-heading h2 {
        font-size: 36px;
    }

    .choose-section .content-heading p {
        font-size: 14px;
        max-width: 100%;
    }

    .choose-box-items {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }

    .choose-box-item img {
        width: 60px;
    }

    .choose-box-item h4 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
	.choose-box-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==============================
   MOBILE (≤ 576px)
============================== */

@media (max-width: 576px) {

    .choose-section {
        padding: 50px 0;
    }

    .choose-section .content-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .choose-section .content-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .choose-box-item img {
        width: 55px;
        margin-bottom: 8px;
    }

    .choose-box-item h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .choose-box-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* ==============================
   OPTIONAL DESKTOP HOVER EFFECT
============================== */

@media (hover: hover) {
    .choose-box-item {
        transition: transform 0.3s ease;
    }

    .choose-box-item:hover {
        transform: translateY(-5px);
    }
}
