/* servicearea.css */

.rte-area-section{
    width:100%;
    padding:110px 20px;
    background:#FFFFFF;
    overflow:hidden;
}

.rte-area-container{
    max-width:1200px;
    margin:0 auto;
}

.rte-area-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.rte-area-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#EA580C;
    font-size:14px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    margin-bottom:16px;
}

.rte-area-badge svg{
    width:22px;
    height:22px;
    background:#EA580C;
    color:#fff;
    border-radius:50%;
    padding:4px;
}

.rte-area-header h2{
    font-size:46px;
    line-height:1.15;
    color:#0F172A;
    margin:0 0 18px;
    font-family:'Montserrat',sans-serif;
    font-weight:900;
}

.rte-area-header p{
    font-size:17px;
    line-height:1.7;
    color:#475569;
    margin:0 auto;
    font-family:'General Sans',sans-serif;
}

.rte-area-content{
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:70px;
    align-items:center;
}

.rte-area-image{
    position:relative;
    min-height:460px;
    display:flex;
    align-items:center;
    justify-content:center;
    transform:scaleX(-1);
}

.rte-area-image::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgb(255, 255, 255);
    border-radius:50%;
    z-index:0;
}

.rte-area-image img{
    position:relative;
    z-index:1;
    max-width:100%;
    width:430px;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 25px 35px rgba(15,23,42,.22));
    border-radius:28px;
}

.rte-area-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.rte-location{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#0F172A;
    padding:17px 18px;
    border-radius:14px;
    font-size:15px;
    font-weight:800;
    font-family:'Montserrat',sans-serif;
    box-shadow:0 12px 28px rgba(15,23,42,.07);
    border:1px solid rgba(15,23,42,.06);
    transition:.3s ease;
}

.rte-location svg{
    width:22px;
    height:22px;
    flex-shrink:0;
    color:#EA580C;
}

.rte-location:hover,
.rte-location.active{
    background:#EA580C;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(234,88,12,.25);
}

.rte-location:hover svg,
.rte-location.active svg{
    color:#fff;
}

/* TABLET */
@media(max-width:991px){

    .rte-area-content{
        grid-template-columns:1fr;
        gap:40px;
    }

    .rte-area-image{
        min-height:360px;
    }

    .rte-area-header h2{
        font-size:38px;
    }

    .rte-area-list{
        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:767px){

    .rte-area-section{
        padding:85px 18px;
    }

    .rte-area-header{
        margin-bottom:40px;
    }

    .rte-area-header h2{
        font-size:30px;
    }

    .rte-area-header p{
        font-size:15px;
    }

    .rte-area-image{
        min-height:auto;
    }

    .rte-area-image::before{
        width:280px;
        height:280px;
    }

    .rte-area-image img{
        width:300px;
    }

    .rte-area-list{
        grid-template-columns:1fr;
    }

    .rte-location{
        padding:15px 16px;
    }
}