/* ================= HERO SLIDESHOW ================= */
.rv-hero{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
}

/* SLIDES */
.rv-hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transform:scale(1.05);
    transition:opacity 1s ease, transform 1.2s ease;
}

.rv-hero-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:1;
}

/* OVERLAY */
.rv-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(15,26,20,0.88) 0%,
        rgba(15,26,20,0.55) 45%,
        rgba(15,26,20,0.10) 100%
    );
}

/* CONTENT – PUSHED FROM LEFT TO CENTER-LEFT */
.rv-hero-content{
    position:relative;
    z-index:2;
    max-width:600px;

    /* KEY FIX */
    margin-left:12%;
    padding-top:120px;

    color:#ffffff;
}

.rv-hero-content h1{
    font-size:42px;
    font-weight:800;
    margin-bottom:14px;
}

.rv-hero-content p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:26px;
    color:#e3e7e4;
}

.rv-hero-btn{
    display:inline-block;
    padding:14px 26px;
    font-size:14px;
    font-weight:700;
    color:#fff;
    background:var(--rv-green);
    text-decoration:none;
    border-radius:3px;
}

.rv-hero-btn:hover{
    background:#249243;
}

/* ================= MOBILE (UNCHANGED LOGIC) ================= */
@media(max-width:900px){
    .rv-hero{
        height:420px;
    }

    .rv-hero-content{
        margin-left:0;
        padding:90px 20px;
    }

    .rv-hero-content h1{
        font-size:28px;
    }

    .rv-hero-content p{
        font-size:14px;
    }
}




/* ================= SERVICES GRID ================= */
.rv-services{
    padding:80px 20px;
    background:#ffffff;
}

.rv-services-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.rv-service-card{
    position:relative;
    background:#fff;
}

.rv-service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}

/* TITLE OVER IMAGE */
.rv-card-title{
    position:absolute;
    top:14px;
    left:14px;
    background:rgba(0,0,0,0.75);
    color:#fff;
    padding:10px 12px;
    font-size:14px;
    font-weight:800;
    line-height:1.2;
    text-transform:uppercase;
}

/* TEXT */
.rv-service-card p{
    font-size:14px;
    color:#333;
    margin:12px 0 6px;
    line-height:1.4;
}

.rv-service-card a{
    font-size:14px;
    font-weight:700;
    color:var(--rv-green);
    text-decoration:none;
}

.rv-service-card a:hover{
    text-decoration:underline;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
    .rv-services-container{
        grid-template-columns:1fr;
    }

    .rv-service-card img{
        height:200px;
    }
}




/* ================= TRUST & VALUE ================= */
.rv-trust{
    background:#ffffff;
    padding:60px 20px 0;
}

/* VALUE LIST */
.rv-trust-points{
    max-width:900px;
    margin:0 auto 50px;
}

.rv-trust-points ul{
    list-style:none;
}

.rv-trust-points li{
    font-size:18px;
    margin-bottom:18px;
    padding-left:34px;
    position:relative;
    line-height:1.6;
    color:#222;
}

.rv-trust-points li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    color:var(--rv-green);
    font-weight:800;
}

.rv-trust-points a{
    color:#0a58ca;
    text-decoration:underline;
}

/* PARTNERS STRIP */
.rv-partners{
    background:#f0f2f5;
    padding:40px 20px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:28px;
    text-align:center;
}

.rv-partner strong{
    display:block;
    font-size:16px;
    font-weight:800;
    margin-bottom:6px;
    color:#4b5563;
}

.rv-partner span{
    font-size:13px;
    color:#6b7280;
}

/* MOBILE */
@media(max-width:900px){
    .rv-partners{
        grid-template-columns:repeat(2,1fr);
    }

    .rv-trust-points li{
        font-size:16px;
    }
}


/* ================= TESTIMONIAL ================= */
.rv-testimonial{
    background:#defff7;
    padding:60px 20px;
}

.rv-testimonial-inner{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.rv-testimonial h3{
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    color:#1f2937;
    margin-bottom:24px;
}

.rv-testimonial blockquote{
    font-size:22px;
    font-style:italic;
    color:#111827;
    margin-bottom:16px;
}

.rv-testimonial-author{
    font-size:14px;
    color:#1f2937;
}
