/* ===========================
   OUR SERVICES PAGE (rs-*)
   =========================== */

.rs-wrapper { 
    font-family: 'Inter', sans-serif;
    color: #024542;
}

/* HERO */
.rs-hero {
    background: linear-gradient(120deg, #024542, #046a60);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.rs-hero-title {
    font-size: 40px;
    font-weight: 700;
}

.rs-hero-subtitle {
    max-width: 700px;
    margin: 15px auto;
    font-size: 18px;
    opacity: 0.9;
}

/* BUTTONS */
.rs-btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.rs-btn-primary {
    background: #ff6b00;
    color: #fff;
}

.rs-btn-primary:hover {
    background: #e86000;
}

.rs-btn-outline {
    border: 2px solid #024542;
    color: #024542;
}

.rs-btn-outline:hover {
    background: #024542;
    color: #fff;
}

/* SERVICE SECTIONS */
.rs-service-section {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 80px 5%;
}

.rs-service-section.rs-alt {
    background: #f3f8f8;
}

.rs-service-content {
    flex: 1;
}

.rs-service-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.rs-service-image {
    flex: 1;
    border-radius: 14px;
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

/* Placeholder images (replace later) */
.rs-outstation-img { background-image: url('https://picsum.photos/800/600?1'); }
.rs-local-img { background-image: url('https://picsum.photos/800/600?2'); }
.rs-airport-img { background-image: url('https://picsum.photos/800/600?3'); }
.rs-tour-img { background-image: url('https://picsum.photos/800/600?4'); }
.rs-suv-img { background-image: url('https://picsum.photos/800/600?5'); }

/* GRID */
.rs-grid {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.rs-grid-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.rs-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.rs-grid-item {
    background: #f9fdfd;
    border: 1px solid #d8e6e6;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.rs-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.rs-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* WHY SECTION */
.rs-why {
    padding: 80px 5%;
    background: #f3f8f8;
    text-align: center;
}

.rs-why-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.rs-why-list li {
    padding: 8px 0;
    font-size: 18px;
}

/* CTA */
.rs-final-cta {
    padding: 80px 20px;
    text-align: center;
    background: #024542;
    color: #fff;
}

.rs-final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .rs-service-section {
        flex-direction: column;
        text-align: center;
    }
}
