/* Route & Service Pages Custom Styles */

/* 1. Hero floating animation & elements */
@keyframes heroImageFloat {
    0% { transform: translateY(0); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
    50% { transform: translateY(-15px); box-shadow: 0 35px 50px rgba(0,0,0,0.15); }
    100% { transform: translateY(0); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
}

.hero-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 80%);
    z-index: 0;
    animation: consolePulse 6s infinite alternate;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    padding: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    animation: heroImageFloat 5s ease-in-out infinite;
}

.hero-image-container img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-floating-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--lux-primary);
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-badge-icon {
    font-size: 1.2rem;
}

.hero-badge-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.hero-badge-sub {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
}

/* 2. Booking bar section */
.service-booking-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.service-booking-console {
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    overflow: visible;
}

.service-booking-title {
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.form-grid-item-wrap {
    position: relative;
}

.required-star {
    color: #dc3545;
}

.error-message-badge {
    color: #dc3545 !important;
    font-size: 0.70rem;
    position: absolute;
    bottom: -18px;
    left: 0;
    white-space: nowrap;
    font-weight: 500;
}

.input-error-border {
    border-color: #dc3545 !important;
}

.booking-btn-submit {
    height: 52px;
    padding: 0;
}

/* 3. Form grid media queries */
@media (min-width: 992px) {
    .outstation-form-grid {
        display: grid;
        grid-template-columns: 2fr 2.5fr 1.5fr 1.5fr 1.5fr;
        gap: 15px;
        align-items: flex-end;
    }
}
@media (max-width: 991px) {
    .outstation-form-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* 4. Why Choose Us Grid */
.outstation-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .outstation-why-grid {
        grid-template-columns: 4.5fr 5.5fr;
        gap: 50px;
        align-items: center;
    }
}

.outstation-why-img-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.outstation-why-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.outstation-why-img:hover {
    transform: scale(1.03);
}

.outstation-why-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid var(--lux-accent);
    z-index: 2;
}

.why-badge-star-box {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-badge-rating-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--lux-primary);
    line-height: 1.1;
}

.why-badge-label-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outstation-why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.outstation-why-feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.outstation-why-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border-color: rgba(16, 185, 129, 0.15);
}

.outstation-why-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.outstation-why-icon-tag {
    background: rgba(16, 185, 129, 0.08);
    color: var(--lux-secondary);
}

.outstation-why-icon-gps {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.outstation-why-icon-driver {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.outstation-why-icon-fleet {
    background: rgba(197, 168, 128, 0.12);
    color: var(--lux-accent);
}

.outstation-why-info h3 {
    font-size: 1.2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 6px;
}

.outstation-why-info p {
    color: #555;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* 5. Popular Routes Section */
.popular-routes-section {
    padding: 5rem 0;
    background: #fff;
}

.outstation-routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .outstation-routes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .outstation-routes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.outstation-route-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outstation-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.route-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.route-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.outstation-route-card:hover .route-img-wrapper img {
    transform: scale(1.05);
}

.route-distance-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--lux-primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    z-index: 2;
}

.route-text-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.route-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 8px;
    font-family: 'Sora', sans-serif;
}

.route-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: #666;
    font-family: 'DM Sans', sans-serif;
}

.route-meta-info span i {
    color: var(--lux-secondary);
    margin-right: 4px;
}

.route-cta-link {
    margin-top: auto;
    text-align: center;
    background: var(--lux-secondary);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    transition: background 0.3s ease;
}

.route-cta-link:hover {
    background: var(--lux-primary);
    color: #fff;
}

/* 6. Safety Standards Section */
.safety-standards-section {
    padding: 5rem 0;
    background: var(--lux-bg-light);
}

.safety-standards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 576px) {
    .safety-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .safety-standards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.safety-standard-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

.safety-standard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.safety-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.safety-icon-1 { background: rgba(16, 185, 129, 0.08); color: var(--lux-secondary); }
.safety-icon-2 { background: rgba(245, 158, 11, 0.08); color: #f59e0b; }
.safety-icon-3 { background: rgba(59, 130, 246, 0.08); color: #3b82f6; }
.safety-icon-4 { background: rgba(239, 68, 68, 0.08); color: #ef4444; }

.safety-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.safety-card-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Helper classes to eliminate inline styling */
.why-badge-star-icon {
    font-size: 1.3rem;
}

.icon-mr {
    margin-right: 4px;
}

/* =========================================================
   7. Route Highlight Pills (Hero Section)
   ========================================================= */
.route-highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.route-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    color: var(--lux-primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.route-pill i {
    color: var(--lux-secondary);
    font-size: 0.8rem;
}

/* =========================================================
   8. Route Pills Navigation (Interlinks Section)
   ========================================================= */
.route-pills-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.route-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.route-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--lux-border);
    color: var(--lux-text-slate);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.route-pill-link:hover {
    background: var(--lux-primary);
    color: #fff;
    border-color: var(--lux-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 107, 84, 0.2);
}

/* =========================================================
   9. SEO Content Section (Read-More Collapsible)
   ========================================================= */
.seo-content-section {
    padding: 4rem 0;
    background: var(--lux-bg-light);
}

.seo-content-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.seo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    margin-bottom: 1.5rem;
}

.seo-content-inner {
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.seo-content-inner.expanded {
    max-height: 9999px;
}

.seo-content-inner h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.seo-content-inner p {
    color: #444;
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.seo-content-inner ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.seo-content-inner ul li {
    color: #444;
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
}

.seo-read-more-overlay {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    padding: 3rem 0 1rem;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95) 60%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.seo-read-more-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.seo-read-more-overlay button {
    pointer-events: all;
}

/* =========================================================
   10. Process Timeline / How It Works
   ========================================================= */
.process-section {
    padding: 5rem 0;
    background: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }
}

@media (min-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.process-connector {
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 36px;
        left: calc(12.5% + 20px);
        right: calc(12.5% + 20px);
        height: 2px;
        background: linear-gradient(to right, var(--lux-secondary), var(--lux-accent), var(--lux-secondary));
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 15px;
}

.process-step-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--lux-text-muted);
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.process-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.process-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.psi-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--lux-secondary);
}

.psi-gold {
    background: rgba(197, 168, 128, 0.12);
    color: var(--lux-accent);
}

.psi-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* =========================================================
   11. Route Card Meta Text
   ========================================================= */
.route-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'DM Sans', sans-serif;
    flex-grow: 1;
}

/* =========================================================
   12. Why Choose Section Container
   ========================================================= */
.why-choose-section {
    padding: 5rem 0;
    background: #fff;
}

/* =============================================================
   13. ROUTE PAGE (rp-) — Unique Design System
   Prefix: rp- (distinct from service pages)
   ============================================================= */

/* -- SECTION 1: Dark Hero -- */
/* -- SECTION 1: Light Hero -- */
.rp-hero-dark {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f4fdf8 100%);
    display: flex;
    flex-direction: column;
    padding-top: var(--navbar-height, 80px);
    overflow: hidden;
}

.rp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(16,185,129,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(197,168,128,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.rp-hero-map-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
}
.rp-hero-map-bg svg {
    width: 100%;
    height: 100%;
}

.rp-hero-container {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.rp-hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .rp-hero-inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

/* Route badge */
.rp-route-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(11,107,84,0.06);
    border: 1px solid rgba(11,107,84,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.rp-city-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rp-dot-from { background: #C5A880; }
.rp-dot-to   { background: #10B981; }

.rp-route-label {
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.rp-route-arrow {
    color: var(--lux-primary);
    font-size: 1rem;
    opacity: 0.5;
}

/* Hero heading */
.rp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--lux-primary);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.rp-title-highlight {
    font-style: normal;
    background: linear-gradient(90deg, #0B6B54, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-hero-subtitle {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: 'DM Sans', sans-serif;
}

.rp-price-highlight {
    color: #0B6B54;
    font-weight: 800;
}

/* Stats row */
.rp-journey-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-radius: 16px;
    overflow: hidden;
}

.rp-stat-item {
    flex: 1;
    min-width: 100px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rp-stat-divider {
    width: 1px;
    background: rgba(0,0,0,0.06);
    margin: 10px 0;
}

.rp-stat-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}
.rp-icon-gold  { color: #C5A880; }
.rp-icon-green { color: #10B981; }

.rp-stat-val {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lux-primary);
    line-height: 1;
}

.rp-stat-key {
    font-size: 0.72rem;
    color: #777;
    font-family: 'DM Sans', sans-serif;
    margin-top: 2px;
    white-space: nowrap;
}

/* -- Booking glass panel -- */
.rp-booking-glass {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.rp-booking-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rp-booking-icon {
    font-size: 1.6rem;
    color: #fff;
    background: var(--lux-primary);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(11,107,84,0.3);
}

.rp-booking-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lux-primary);
}
.rp-booking-sub {
    font-size: 0.78rem;
    color: #666;
    font-family: 'DM Sans', sans-serif;
}

/* Pre-filled route display */
.rp-prefilled-route {
    background: #f8f9fa;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-prefilled-city {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-prefilled-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rp-dot-pickup { background: #C5A880; box-shadow: 0 0 0 3px rgba(197,168,128,0.2); }
.rp-dot-drop   { background: #10B981; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }

.rp-prefilled-label {
    font-size: 0.68rem;
    color: #888;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rp-prefilled-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
}

.rp-prefilled-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 6px;
}
.rp-connector-line {
    width: 1px;
    height: 12px;
    background: #ccc;
}
.rp-connector-icon {
    color: #aaa;
    font-size: 0.7rem;
}

/* Form inputs (glass) */
.rp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 1.2rem;
}

@media (max-width: 460px) {
    .rp-form-row { grid-template-columns: 1fr; }
}

.rp-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rp-field-label {
    font-size: 0.78rem;
    color: #555;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rp-input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #333;
    padding: 12px 14px;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.rp-input::placeholder { color: #aaa; }
.rp-input:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.rp-input.input-error-border { border-color: #ef4444; }

/* Book button */
.rp-book-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0B6B54, #10B981);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    margin-bottom: 0.8rem;
}
.rp-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11,107,84,0.3);
}

.rp-btn-arrow { margin-left: auto; }

.rp-booking-assurance {
    text-align: center;
    font-size: 0.75rem;
    color: #777;
    font-family: 'DM Sans', sans-serif;
}

/* Hero bottom image strip */
.rp-hero-img-strip {
    position: relative;
    margin-top: 2rem;
    height: 220px;
    overflow: hidden;
    z-index: 1;
}
.rp-hero-img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}
.rp-img-strip-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f4fdf8 0%, transparent 30%, transparent 70%, #f8f7f4 100%);
}

/* -- SECTION 2: Journey Strip -- */
.rp-journey-strip-section {
    background: #f8f7f4;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rp-journey-map {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.rp-journey-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
}

.rp-city-origin .rp-city-name,
.rp-city-dest .rp-city-name {
    font-weight: 800;
    color: var(--lux-primary);
}

.rp-city-pin {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 8px;
}

.rp-pin-origin {
    background: #0B6B54;
    color: #fff;
}
.rp-pin-via {
    background: #f0ede8;
    color: #aaa;
    font-size: 0.5rem;
}
.rp-pin-dest {
    background: #C5A880;
    color: #fff;
}

.rp-city-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #333;
}
.rp-city-type {
    font-size: 0.68rem;
    color: #999;
    font-family: 'DM Sans', sans-serif;
}

.rp-journey-connector {
    flex: 1;
    min-width: 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-bottom: 24px;
}

.rp-connector-road {
    width: 100%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #0B6B54 0, #0B6B54 8px, transparent 8px, transparent 16px);
    border-radius: 2px;
}

.rp-connector-via {
    font-size: 0.65rem;
    color: #999;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
}

.rp-connector-car {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    color: #C5A880;
    font-size: 1rem;
    animation: rpCarMove 3s ease-in-out infinite alternate;
}

@keyframes rpCarMove {
    0%   { left: 20%; }
    100% { left: 80%; }
}

/* -- SECTION 3: Fare Table -- */
.rp-fare-section {
    padding: 5rem 0;
    background: #fff;
}

.rp-section-head {
    margin-bottom: 2.5rem;
}
.rp-head-center { text-align: center; }

.rp-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--lux-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.rp-eyebrow-line {
    height: 1px;
    width: 40px;
    background: linear-gradient(90deg, transparent, var(--lux-secondary));
}
.rp-eyebrow-line:last-child {
    background: linear-gradient(270deg, transparent, var(--lux-secondary));
}

.rp-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.rp-txt-accent { color: var(--lux-accent); }
.rp-txt-gold   { color: #C5A880; }
.rp-title-white { color: #fff; }

.rp-section-sub {
    color: #666;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

/* Fare Table */
.rp-fare-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 30px rgba(0,0,0,0.05);
}

.rp-fare-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    min-width: 650px;
}

.rp-fare-table thead tr {
    background: #f4f2ec;
}

.rp-fare-table thead th {
    padding: 14px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #555;
    text-align: left;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.rp-fare-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s ease;
}

.rp-fare-table tbody tr:last-child { border-bottom: none; }
.rp-fare-table tbody tr:hover { background: #fafaf8; }

.rp-row-popular {
    background: rgba(11,107,84,0.02);
}
.rp-row-popular:hover { background: rgba(11,107,84,0.04) !important; }

.rp-fare-table td {
    padding: 18px 20px;
    font-size: 0.9rem;
    color: #444;
    vertical-align: middle;
}

.rp-car-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px !important;
}

.rp-table-car-img {
    width: 90px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.rp-car-name {
    font-weight: 700;
    color: var(--lux-primary);
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
}

.rp-car-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 3px;
}

.rp-tag-eco     { background: rgba(16,185,129,0.1); color: #10B981; }
.rp-tag-popular { background: rgba(11,107,84,0.12); color: #0B6B54; }
.rp-tag-family  { background: rgba(245,158,11,0.1); color: #f59e0b; }
.rp-tag-premium { background: rgba(197,168,128,0.15); color: #B89568; }

.rp-td-icon { color: var(--lux-secondary); margin-right: 5px; }

.rp-fare-col { font-weight: 700; }

.rp-fare-val {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--lux-primary);
}

.rp-table-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lux-primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.rp-table-cta:hover {
    background: #084d3c;
    color: #fff;
    transform: translateY(-1px);
}

.rp-fare-note {
    text-align: center;
    font-size: 0.82rem;
    color: #888;
    font-family: 'DM Sans', sans-serif;
    margin-top: 1.5rem;
}
.rp-fare-note i { color: var(--lux-secondary); margin-right: 5px; }

/* -- SECTION 4: Glassmorphism Benefits (dark section) -- */
.rp-benefits-dark {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.rp-benefits-bg-img {
    position: absolute;
    inset: 0;
}
.rp-benefits-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rp-benefits-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,107,84,0.92) 0%, rgba(8,77,60,0.88) 100%);
}

.rp-benefits-container {
    position: relative;
    z-index: 2;
}

.rp-head-light { color: #fff; }

.rp-section-eyebrow.rp-eyebrow-light {
    color: rgba(255,255,255,0.6);
}

.rp-eyebrow-line.rp-line-gold {
    background: linear-gradient(90deg, transparent, #C5A880);
}
.rp-eyebrow-line.rp-line-gold:last-child {
    background: linear-gradient(270deg, transparent, #C5A880);
}

.rp-benefits-glass-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2.5rem;
}

@media (min-width: 576px) {
    .rp-benefits-glass-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
    .rp-benefits-glass-grid { grid-template-columns: repeat(4, 1fr); }
}

.rp-benefit-glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px 22px;
    transition: all 0.3s ease;
}

.rp-benefit-glass-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(197,168,128,0.25);
}

.rp-benefit-glass-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.rp-bgi-gold  { background: rgba(197,168,128,0.18); color: #C5A880; }
.rp-bgi-green { background: rgba(16,185,129,0.14); color: #10B981; }

.rp-benefit-glass-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.rp-benefit-glass-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
    margin: 0;
}

/* -- SECTION 5: Route Details Split -- */
.rp-route-details {
    padding: 5rem 0;
    background: #faf9f6;
}

.rp-route-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .rp-route-split { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
}

/* Summary panel */
.rp-route-summary-panel {
    background: linear-gradient(135deg, #0B6B54, #0a5544);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    position: sticky;
    top: 100px;
}

.rp-rs-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.8rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.rp-rs-icon-wrap {
    background: rgba(255,255,255,0.12);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #C5A880;
    flex-shrink: 0;
}

.rp-rs-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.rp-rs-route-line {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-family: 'DM Sans', sans-serif;
}

.rp-rs-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 1.8rem;
}

.rp-rs-stat {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

.rp-rs-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #C5A880;
    line-height: 1;
}
.rp-rs-stat-num span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.rp-rs-stat-lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-family: 'DM Sans', sans-serif;
    margin-top: 4px;
}

.rp-rs-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #C5A880;
    color: #031a12;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.rp-rs-book-btn:hover {
    background: #d4b896;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197,168,128,0.3);
}

/* Route checkpoints */
.rp-checkpoints-heading {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 1.5rem;
}

.rp-checkpoint-list { display: flex; flex-direction: column; }

.rp-checkpoint {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.rp-cp-marker {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.rp-cp-origin { background: #0B6B54; color: #fff; }
.rp-cp-via    { background: #f0ede8; color: #ccc; font-size: 0.45rem; }
.rp-cp-dest   { background: #C5A880; color: #fff; }

.rp-cp-line {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, #ddd, #eee);
    margin-left: 18px;
}

.rp-cp-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 4px;
}

.rp-cp-detail {
    font-size: 0.83rem;
    color: #666;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.55;
    margin-bottom: 4px;
}

/* -- SECTION 6: Pickup cards -- */
.rp-pickups-section {
    padding: 5rem 0;
    background: #fff;
}

.rp-pickup-scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 2.5rem;
}

@media (min-width: 576px) { .rp-pickup-scroll { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .rp-pickup-scroll { grid-template-columns: repeat(4, 1fr); } }

.rp-pickup-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rp-pickup-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.1);
}

.rp-pickup-img-wrap {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.rp-pickup-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rp-pickup-card:hover .rp-pickup-img-wrap img { transform: scale(1.06); }

.rp-pickup-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(3,26,18,0.7);
    color: #C5A880;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    backdrop-filter: blur(4px);
}

.rp-pickup-body { padding: 16px 18px; }

.rp-pickup-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lux-primary);
    margin-bottom: 8px;
}

.rp-pickup-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #777;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 12px;
}
.rp-pickup-meta i { color: var(--lux-secondary); margin-right: 4px; }

.rp-pickup-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--lux-bg-light);
    color: var(--lux-primary);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rp-pickup-link:hover {
    background: var(--lux-primary);
    color: #fff;
}

.rp-pickup-all-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* -- SECTION 7: SEO Section with sidebar -- */
.rp-seo-section {
    padding: 5rem 0;
    background: #faf9f6;
}

.rp-seo-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .rp-seo-layout { grid-template-columns: 1fr 300px; align-items: start; }
}

.rp-seo-main {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.rp-seo-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 1.5rem;
}

/* Sidebar */
.rp-seo-sidebar { display: flex; flex-direction: column; gap: 20px; }

.rp-quick-facts {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.rp-qf-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--lux-bg-light);
}

.rp-qf-list { display: flex; flex-direction: column; gap: 10px; }

.rp-qf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
}

.rp-qf-item dt {
    font-size: 0.82rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rp-qf-item dt i { color: var(--lux-secondary); font-size: 0.75rem; }

.rp-qf-item dd {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--lux-primary);
}

.rp-sidebar-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 1.2rem;
    background: var(--lux-primary);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
}
.rp-sidebar-call-btn:hover {
    background: #084d3c;
    color: #fff;
    transform: translateY(-1px);
}

.rp-service-links {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.rp-sl-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--lux-primary);
    margin-bottom: 1rem;
}

.rp-sl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rp-sl-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    color: #555;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: color 0.2s ease;
}
.rp-sl-list li:last-child a { border-bottom: none; }
.rp-sl-list li a:hover { color: var(--lux-primary); }
.rp-sl-list li a i { color: var(--lux-secondary); font-size: 0.65rem; }

/* Read more button */
.rp-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lux-primary);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s ease;
}
.rp-readmore-btn:hover { background: #084d3c; }

/* -- SECTION 8: FAQ -- */
.rp-faq-section {
    padding: 5rem 0;
    background: #fff;
}

.rp-faq-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .rp-faq-inner { grid-template-columns: 1fr 1.6fr; align-items: start; gap: 5rem; }
}

.rp-faq-left {
    position: sticky;
    top: 100px;
}

.rp-faq-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--lux-primary);
    line-height: 1.15;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.rp-faq-intro {
    color: #666;
    font-size: 0.92rem;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rp-faq-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lux-primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    transition: all 0.25s ease;
}
.rp-faq-call-btn:hover {
    background: #084d3c;
    color: #fff;
    transform: translateY(-2px);
}

.rp-faq-accordions { display: flex; flex-direction: column; gap: 0; }

.rp-faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* -- SECTION 9: Final CTA -- */
.rp-cta-final {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a5544 0%, #0B6B54 50%, #084d3c 100%);
}

.rp-cta-final-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .rp-cta-final-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 4rem;
    }
}

.rp-cta-text { flex: 1; }

.rp-cta-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.rp-cta-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1rem;
}

.rp-cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
}

@media (min-width: 992px) { .rp-cta-trust { justify-content: flex-start; } }

.rp-cta-trust i { color: #10B981; margin-right: 5px; }

.rp-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .rp-cta-actions { flex-direction: row; }
}

.rp-cta-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C5A880;
    color: #031a12;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.rp-cta-book-btn:hover {
    background: #d4b896;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197,168,128,0.3);
}

.rp-cta-call-alt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.rp-cta-call-alt:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    transform: translateY(-2px);
}

/* -- SECTION: Scenic Split View -- */
.rp-scenic-split {
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
}
.rp-scenic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.rp-scenic-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11,107,84,0.08);
}
.rp-scenic-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}
.rp-scenic-img-wrap:hover img {
    transform: scale(1.05);
}
.rp-scenic-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--lux-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rp-scenic-content {
    padding-right: 2rem;
}
.rp-scenic-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--lux-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.rp-scenic-desc {
    color: var(--lux-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.rp-scenic-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}
.rp-scenic-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--lux-dark);
}
.rp-scenic-features i {
    color: var(--lux-accent);
    margin-top: 4px;
}
.rp-scenic-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--lux-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(11,107,84,0.2);
}
.rp-scenic-btn:hover {
    background: #084f3e;
    transform: translateY(-2px);
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .rp-scenic-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .rp-scenic-content {
        padding-right: 0;
    }
    .rp-scenic-title {
        font-size: 1.8rem;
    }
}

/* =====================================================================
   MOBILE RESPONSIVENESS FIXES
   ===================================================================== */
@media (max-width: 576px) {
    .rp-hero-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .rp-booking-glass {
        padding: 1.25rem;
        border-radius: 16px;
    }
    .rp-prefilled-route {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
    }
    .rp-prefilled-city {
        padding: 6px 0;
    }
    .rp-prefilled-connector {
        flex-direction: row;
        justify-content: center;
        padding: 4px 0;
    }
    .rp-connector-line {
        width: 40px;
        height: 1px;
        flex: 0 0 auto;
    }
    .rp-connector-icon {
        transform: rotate(90deg);
        margin: 0 8px;
    }
    .rp-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .rp-journey-map {
        padding: 0 10px;
    }
    .rp-journey-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .rp-stat-item {
        padding: 12px 10px;
        min-width: 0;
    }
    .rp-stat-divider {
        display: none;
    }
}
