/* ============================================================
   ROUTE PAGE — route-page.css
   Shared styles for all route pages (solapur-to-pune, etc.)
   ============================================================ */

/* ============================================================
   ROUTE HERO BANNER
   ============================================================ */
.route-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--navbar-height) + 2rem) 5% 2.5rem;
    overflow: hidden;
    margin-top: 0;
}

.route-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13, 27, 42, 0.96) 0%, rgba(27, 38, 59, 0.92) 100%),
        url('images/hero-bg.jpg') center center / cover no-repeat;
    z-index: 0;
}

/* Decorative diagonal stripe */
.route-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.route-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}
.back-link:hover { color: var(--accent-color); }

.route-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.route-city {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.route-city i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.route-city span {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
}

.route-city.destination span {
    color: var(--accent-color);
}

.route-arrow-big {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--accent-color);
    opacity: 0.6;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.route-arrow-big i { font-size: 1.2rem; }

.route-meta-strip {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0.85rem 1.5rem;
    width: fit-content;
    flex-wrap: wrap;
    gap: 0;
}

.route-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.5rem;
}

.route-meta-item:first-child { padding-left: 0; }
.route-meta-item:last-child { padding-right: 0; }

.route-meta-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.route-meta-item div {
    display: flex;
    flex-direction: column;
}

.route-meta-item strong {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.route-meta-item span {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.route-meta-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.route-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 193, 7, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-left: 4px solid #FFC107;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.route-note i {
    color: #FFC107;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.route-note p {
    font-size: 0.88rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

.route-note strong {
    color: #FFC107;
}

/* ============================================================
   PAGE LAYOUT — Two Column
   ============================================================ */
.route-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 2rem;
    margin: 2.5rem auto;
    padding: 0 5%;
    align-items: start;
}

.rp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.rp-section-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}


/* ============================================================
   VEHICLE CARDS
   ============================================================ */
.vehicle-card {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 1.25rem;
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    border-left-color: var(--accent-color);
}

.featured-vehicle {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, #415A77 0%, #344d66 100%);
}

.vc-popular-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vc-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.vc-left img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.vc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: center;
}

.vc-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255,193,7,0.12);
    border: 1px solid rgba(255,193,7,0.25);
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.vc-middle h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.vc-models {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.vc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vc-features li {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vc-features li i {
    color: var(--accent-color);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.vc-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    min-width: 130px;
}

.vc-price-block {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vc-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.vc-price-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vc-price-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-color);
}

.vc-price-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.08);
    margin: 0.15rem 0;
}

.vc-book-btn {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    justify-content: center;
}


/* ============================================================
   INCLUSIONS / EXCLUSIONS
   ============================================================ */
.inc-exc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.inc-box, .exc-box {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

.inc-box { border-top: 3px solid #4caf50; }
.exc-box { border-top: 3px solid #ef5350; }

.inc-box h4, .exc-box h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.inc-box h4 { color: #4caf50; }
.exc-box h4 { color: #ef5350; }

.inc-box ul, .exc-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.inc-box ul li, .exc-box ul li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-left: 0.5rem;
    position: relative;
}

.inc-box ul li::before {
    content: '✓';
    color: #4caf50;
    position: absolute;
    left: -0.75rem;
    font-size: 0.75rem;
}

.exc-box ul li::before {
    content: '✗';
    color: #ef5350;
    position: absolute;
    left: -0.75rem;
    font-size: 0.75rem;
}


/* ============================================================
   SIDEBAR
   ============================================================ */
.route-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: sticky;
    top: calc(var(--navbar-height) + 1rem);
}

.sidebar-form-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

.sfp-header {
    background: linear-gradient(135deg, #25d366, #128c7e);
    padding: 1.1rem 1.5rem;
    text-align: center;
}

.sfp-header h3 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.sfp-header p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
}

.route-booking-form {
    padding: 1.25rem 1.25rem 1.5rem;
    gap: 0.85rem;
}

.route-booking-form .form-group label {
    font-size: 0.78rem;
}

.route-booking-form input,
.route-booking-form select {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
}

.sidebar-call-card {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sidebar-call-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-call {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-call:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.sidebar-info-card {
    background-color: var(--card-bg-color);
    border-radius: var(--border-radius);
    padding: 1.25rem;
}

.sidebar-info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-info-card h4 i { color: var(--accent-color); }

.route-highlights-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.route-highlights-list li {
    font-size: 0.83rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.route-highlights-list li i {
    color: var(--accent-color);
    font-size: 0.65rem;
    flex-shrink: 0;
}


/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 4rem 5%;
    background-color: var(--secondary-color);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(255,193,7,0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.1rem 1.25rem;
    text-align: left;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--accent-color); }

.faq-question i {
    color: var(--accent-color);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.1rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.85rem;
}

.faq-answer strong { color: var(--accent-color); }


/* ============================================================
   OTHER ROUTES SECTION
   ============================================================ */
.other-routes-section {
    padding: 4rem 5%;
    background-color: var(--bg-color);
}

.other-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.other-route-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.other-route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: rgba(255,193,7,0.3);
}

.other-route-card > i:first-child {
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.other-route-card div {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.other-route-card strong {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.other-route-card span {
    font-size: 0.78rem;
    color: var(--accent-color);
    font-weight: 500;
}

.or-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: color var(--transition), transform var(--transition);
}

.other-route-card:hover .or-arrow {
    color: var(--accent-color);
    transform: translateX(3px);
}


/* ============================================================
   RESPONSIVE — Tablet (992px)
   ============================================================ */
@media (max-width: 992px) {
    .route-page-wrapper {
        grid-template-columns: 1fr;
    }

    .route-sidebar {
        position: static;
        order: -1;
    }

    .sidebar-form-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .route-meta-strip {
        gap: 0;
        width: 100%;
        justify-content: space-between;
    }
}


/* ============================================================
   RESPONSIVE — Mobile (768px)
   ============================================================ */
@media (max-width: 768px) {
    .route-hero {
        padding: calc(var(--navbar-height) + 1.5rem) 4% 2rem;
        min-height: 220px;
    }

    .route-city span { font-size: 1.8rem; }
    .arrow-line { width: 30px; }

    .route-meta-strip {
        padding: 0.75rem 1rem;
        gap: 0;
    }

    .route-meta-item {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .route-meta-item strong { font-size: 0.88rem; }
    .route-meta-item span { font-size: 0.65rem; }
    .route-meta-item i { font-size: 1rem; }

    .route-page-wrapper {
        padding: 0 4%;
        margin: 1.5rem auto;
    }

    .vehicle-card {
        grid-template-columns: 1fr;
    }

    .vc-left {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
    }

    .vc-left img {
        width: 100px;
        height: 70px;
        flex-shrink: 0;
    }

    .vc-tags { justify-content: flex-start; }

    .vc-right {
        flex-direction: row;
        align-items: center;
        min-width: unset;
    }

    .vc-price-block {
        flex-direction: row;
        gap: 0.75rem;
        flex-grow: 1;
    }

    .vc-price-divider {
        width: 1px;
        height: auto;
        align-self: stretch;
    }

    .vc-book-btn { white-space: nowrap; }

    .inc-exc-row { grid-template-columns: 1fr; }

    .faq-section { padding: 3rem 4%; }
    .other-routes-section { padding: 3rem 4%; }
    .other-routes-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — Small phones (480px)
   ============================================================ */
@media (max-width: 480px) {
    .route-meta-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.85rem;
        width: 100%;
    }

    .route-meta-divider { display: none; }
    .route-meta-item { padding: 0; }
    .route-city span { font-size: 1.5rem; }
    .arrow-line { width: 20px; }

    .vc-right { flex-direction: column; }
    .vc-price-block { flex-direction: column; }
    .vc-price-divider { width: auto; height: 1px; }

    .other-routes-grid { grid-template-columns: 1fr; }

    .sidebar-call-card { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — Very small (360px)
   ============================================================ */
@media (max-width: 360px) {
    .route-hero { padding: calc(var(--navbar-height) + 1rem) 3% 1.5rem; }
    .route-page-wrapper { padding: 0 3%; }
    .route-city span { font-size: 1.3rem; }
    .vehicle-card { padding: 1rem; }
    .vc-left img { width: 80px; height: 58px; }
    .faq-section { padding: 2.5rem 3%; }
    .other-routes-section { padding: 2.5rem 3%; }
}
