/* whychooseus.css */

.rte-why-section{
    width:100%;
    padding:110px 20px;
    background:#0F172A;
    overflow:hidden;
    scroll-margin-top:100px;
}

.rte-why-container{
    max-width:1200px;
    margin:auto;
}

.rte-why-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:70px;
}

.rte-why-image{
    border-radius:28px;
    overflow:hidden;
    height:100%;
    min-height:620px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.rte-why-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.rte-why-badge{
    display:inline-block;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(234,88,12,.15);
    color:#EA580C;
    font-size:13px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    margin-bottom:20px;
}

.rte-why-content h2{
    font-size:48px;
    line-height:1.15;
    color:#fff;
    margin:0 0 22px;
    font-family:'Montserrat',sans-serif;
}

.rte-why-content p{
    font-size:17px;
    line-height:1.8;
    color:#CBD5E1;
    margin-bottom:35px;
    font-family:'General Sans',sans-serif;
}

.rte-why-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.rte-point{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    padding:14px 16px;
    border-radius:16px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    font-family:'Montserrat',sans-serif;
}

.rte-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.rte-feature-card{
    background:#fff;
    border-radius:24px;
    padding:35px 28px;
    transition:.35s ease;
}

.rte-feature-card:hover{
    transform:translateY(-8px);
}

.rte-feature-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    background:#EA580C;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
    color:#fff;
}

.rte-feature-icon svg{
    width:30px;
    height:30px;
}

.rte-feature-card h3{
    font-size:22px;
    line-height:1.3;
    color:#0F172A;
    margin:0 0 12px;
    font-family:'Montserrat',sans-serif;
}

.rte-feature-card p{
    font-size:15px;
    line-height:1.7;
    color:#475569;
    margin:0;
    font-family:'General Sans',sans-serif;
}

/* TABLET */
@media(max-width:991px){

    .rte-why-top{
        grid-template-columns:1fr;
        gap:35px;
    }

    .rte-why-image{
        min-height:420px;
    }

    .rte-why-content h2{
        font-size:38px;
    }

    .rte-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:767px){

    .rte-why-section{
        padding:85px 20px;
    }

    .rte-why-content h2{
        font-size:30px;
    }

    .rte-why-content p{
        font-size:15px;
    }

    .rte-why-points{
        grid-template-columns:1fr;
    }

    .rte-feature-grid{
        grid-template-columns:1fr;
    }

    .rte-feature-card{
        padding:28px 22px;
    }

}