@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========================================
   CSS Variables / Design Tokens
   ======================================== */
:root {
    --primary-black: #1A1A1A;
    --primary-dark: #111111;
    --accent-orange: #F5A623;
    --accent-gradient: linear-gradient(135deg, #F5A623 0%, #E8601C 100%);
    --hero-gradient: linear-gradient(135deg, #FFF5E6 0%, #FFECD2 40%, #FFE0BE 100%);
    --hero-circle: radial-gradient(circle, #F5A623 0%, #E8601C 60%, #C0392B 100%);
    --text-dark: #1A1A1A;
    --text-medium: #555555;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-section: #F5F6F8;
    --border-light: #E8E8E8;
    --border-radius-xl: 24px;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --border-radius-pill: 50px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.10);
    --shadow-widget: 0 20px 60px rgba(0, 0, 0, 0.08);
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HEADER — Dark Navbar (Figma: black bg)
   ======================================== */
.navbar {
    padding: 0;
    background: var(--primary-dark) !important;
    min-height: 64px;
    border-bottom: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    min-height: 64px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.navbar-brand img {
    height: 32px;
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
}

.navbar .language-select {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.35rem 0.6rem;
}

.navbar .language-select img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

/* "Book a ride" button: white outline on dark navbar */
.btn-book-ride {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-book-ride:hover {
    background: #fff;
    color: var(--primary-dark) !important;
    border-color: #fff;
}

/* ========================================
   HERO SECTION  (Figma: peach gradient, rounded bottom)
   ======================================== */
.hero-section {
    background: var(--hero-gradient);
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--border-radius-pill);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-orange);
}

.hero-badge .badge-icon {
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-medium);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* orange-to-red gradient circle */
.hero-section::before {
    content: '';
    position: absolute;
    right: 18%;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    height: 340px;
    background: var(--hero-circle);
    border-radius: 50%;
    opacity: 0.55;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    font-weight: 400;
    line-height: 1.5;
    max-width: 340px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-image-wrapper .hero-car {
    max-width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.18));
}

.hero-plane {
    position: absolute;
    top: 10px;
    right: 35%;
    width: 90px;
    opacity: 0.5;
    z-index: 3;
    transform: rotate(-10deg);
}

/* ========================================
   BOOKING WIDGET
   ======================================== */
.booking-widget-wrapper {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

/* Tab row: dark background */
.widget-tabs-row {
    background: var(--primary-dark);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.widget-tabs {
    display: flex;
    gap: 0;
    border-radius: var(--border-radius-pill);
    overflow: hidden;
}

.widget-tab {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.55);
    border: none;
    background: transparent;
}

.widget-tab.active {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
}

.widget-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.85);
}

.promo-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.promo-banner .promo-link {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: underline;
}

/* Form row: white background */
.widget-form-row {
    background: var(--bg-white);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-widget);
}

.booking-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-v2 {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group-custom {
    flex: 1;
    min-width: 180px;
}

.form-group-custom label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    display: block;
}

.form-group-custom .input-wrapper {
    background: var(--bg-section);
    border-radius: var(--border-radius-md);
    padding: 0.65rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid transparent;
    transition: var(--transition);
    min-height: 44px;
}

.form-group-custom .input-wrapper:focus-within {
    border-color: var(--accent-orange);
    background: #fff;
}

.form-group-custom .input-wrapper i {
    flex-shrink: 0;
    opacity: 0.5;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group-custom input,
.form-group-custom select {
    background: transparent;
    border: none;
    outline: none !important;
    width: 100%;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-family: var(--font-family);
}


.suggestion-item:hover {
    background: var(--bg-section);
    color: var(--text-dark);
}

.suggestion-item:first-child {
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.suggestion-item:last-child {
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.swap-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 7px;
}

.swap-icon:hover {
    background: var(--accent-orange);
    color: #fff;
    border-color: var(--accent-orange);
}

.btn-see-prices {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    min-height: 44px;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-see-prices:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ========================================
    font-family: var(--font-family);
}

.intercity-form .btn-view:hover {
    background: var(--accent-orange);
    color: #fff;
}

/* ========================================
   DEPARTURES TABLE (Home page)
   ======================================== */
.departures-section {
    padding: 60px 0;
}

.departures-header {
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.departures-list {
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    overflow: hidden;
}

.departure-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.departure-item:last-child {
    border-bottom: none;
}

.departure-item:hover {
    background: var(--bg-section);
}

.departure-time {
    min-width: 90px;
}

.departure-time .time {
    font-size: 1rem;
    font-weight: 700;
}

.departure-time .period {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    margin-left: 2px;
}

.departure-route {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-medium);
    font-size: 0.82rem;
    white-space: nowrap;
}

.departure-route .route-badge {
    background: var(--bg-section);
    padding: 1px 6px;
    border-radius: var(--border-radius-sm);
    font-size: 0.7rem;
    font-weight: 500;
}

.departure-vehicle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1;
}

.departure-vehicle img {
    width: 75px;
    height: 45px;
    object-fit: contain;
}

.departure-vehicle .vehicle-info {
    font-weight: 600;
    font-size: 0.85rem;
}

.departure-vehicle .vehicle-year {
    font-size: 0.75rem;
    color: var(--text-light);
}

.departure-specs {
    display: flex;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.departure-specs span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.departure-price {
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 70px;
    text-align: right;
}

.departure-price .cents {
    font-size: 0.75rem;
    font-weight: 500;
}

.departure-book {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.departure-book:hover {
    color: #E8601C;
}

.btn-view-all {
    background: var(--bg-section);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-pill);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-view-all:hover {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-padding {
    padding: 70px 0;
}

.section-tag {
    background: var(--bg-section);
    padding: 0.35rem 1rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    border: 1px solid var(--border-light);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 560px;
}

/* ========================================
   SERVICES — Image Cards (Figma)
   ======================================== */
.services-section {
    padding: 70px 0;
}

.service-card {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    position: relative;
    height: 420px;
    cursor: pointer;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.service-card .card-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.service-card .card-overlay p {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-card .card-overlay .btn-book-now {
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.45rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-block;
}

.service-card .card-overlay .btn-book-now:hover {
    background: var(--accent-orange);
    color: #fff;
}

/* ========================================
   RELIABILITY / WHY CHOOSE US
   ======================================== */
.reliability-section {
    padding: 70px 0;
}

.stats-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.stat-item .stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    align-items: center;
}

.trust-badges img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 50px 0 25px;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-section);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-dark);
}

.footer-social a:hover img {
    filter: brightness(0) invert(1);
}

.footer-social a img {
    width: 16px;
    height: 16px;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-newsletter .input-group {
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.footer-newsletter .form-control {
    border: none;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-family: var(--font-family);
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
}

.footer-newsletter .btn-join {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    padding: 0.65rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-family);
}

.footer-newsletter .btn-join:hover {
    background: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1.25rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-orange);
}

/* ========================================
   BOOKING FLOW — Progress Steps
   ======================================== */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
    padding: 1.25rem 0;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.progress-step .step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition);
}

.progress-step.active .step-circle {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.progress-step.completed .step-circle {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.progress-step .step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

.progress-connector {
    width: 50px;
    height: 2px;
    background: var(--border-light);
    margin: 0 0.4rem;
}

.progress-connector.completed {
    background: var(--primary-dark);
}

/* ========================================
   TRIP HEADER (Map + pickup/dropoff)
   ======================================== */
.trip-header {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFECD2 100%);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.trip-header .map-container {
    height: 180px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin: 0.75rem;
}

.trip-header .map-container img,
.trip-header .map-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.trip-timeline {
    padding: 0.75rem 1.25rem 1.25rem;
}

.timeline-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    position: relative;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2.5px solid var(--primary-dark);
    background: #fff;
    margin-top: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-dot.pickup {
    border-color: var(--accent-orange);
}

.timeline-dot.dropoff {
    border-color: var(--primary-dark);
}

.timeline-connector {
    position: absolute;
    left: 4px;
    top: 14px;
    bottom: -18px;
    width: 2px;
    background: var(--border-light);
    z-index: 1;
}

.timeline-info .time-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}

.timeline-info .location-box {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 0.6rem 0.85rem;
    margin-top: 0.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
}

.timeline-info .location-box .pickup-badge {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 0.2rem;
}

.timeline-info .location-box .dropoff-badge {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 0.2rem;
}

.duration-badge {
    display: inline-block;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-medium);
    margin: 0.6rem 0 0.6rem 1.25rem;
}

/* ========================================
   CAR CARDS (Select your ride)
   ======================================== */
.car-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    border: 1px solid var(--border-light);
    margin-bottom: 0.75rem;
    transition: var(--transition);
    cursor: pointer;
}

.car-card:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-card);
}

.car-card .car-image {
    width: 110px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
}

.car-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.car-info .vendor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--bg-section);
    border-radius: var(--border-radius-pill);
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.4rem;
    border: 1px solid var(--border-light);
}

.car-info .vendor-badge img {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.car-meta {
    display: flex;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0.35rem 0;
}

.car-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.car-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

.car-price .currency {
    font-size: 0.9rem;
    font-weight: 600;
}

.car-price .cents {
    font-size: 0.8rem;
    font-weight: 500;
}

.car-price .price-note {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    display: block;
}

.btn-book-car {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-family);
    cursor: pointer;
}

.btn-book-car:hover {
    background: var(--accent-orange);
    transform: translateY(-1px);
}

/* Selected Ride Card */
.selected-ride-card {
    background: var(--bg-section);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border: 1px solid var(--border-light);
}

.selected-ride-card img {
    width: 90px;
    height: 55px;
    object-fit: contain;
}

/* Extras */
.extras-section .yes-no-toggle {
    display: flex;
    gap: 0.4rem;
}

.extras-section .toggle-btn {
    flex: 1;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    background: var(--bg-white);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    font-family: var(--font-family);
    font-size: 0.85rem;
}

.extras-section .toggle-btn.active {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* Payment Page */
.payment-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--border-light);
}

.payment-method-option {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.payment-method-option.active {
    border-color: var(--primary-dark);
    background: var(--bg-section);
}

/* Summary Card */
.summary-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    border: 1px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
}

.summary-row .label {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.summary-row .value {
    font-weight: 700;
    font-size: 0.85rem;
}

.summary-total {
    border-top: 1px solid var(--border-light);
    padding-top: 0.85rem;
    margin-top: 0.4rem;
}

.summary-total .label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.summary-total .value {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-dark);
}

/* Confirmation */
.confirmation-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

/* ========================================
   INTERCITY OFFERS PAGE
   ======================================== */
.offer-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-light);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.offer-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent-orange);
}

.offer-vendor {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.offer-vendor img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.offer-vendor .vendor-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.offer-vendor .vendor-rating {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.offer-vendor .vendor-rating .star {
    color: var(--accent-orange);
}

.offer-vehicle {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.offer-vehicle img {
    width: 110px;
    height: 65px;
    object-fit: contain;
}

.offer-pricing {
    text-align: right;
}

.offer-pricing .price {
    font-size: 1.6rem;
    font-weight: 800;
}

.offer-pricing .price-note {
    font-size: 0.75rem;
    color: var(--text-medium);
}

.btn-book-offer {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-family: var(--font-family);
}

.btn-book-offer:hover {
    background: var(--accent-orange);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-medium);
    font-size: 0.85rem;
    font-weight: 500;
}

.sort-dropdown select {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 0.35rem 0.6rem;
    font-family: var(--font-family);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-white);
    cursor: pointer;
}

/* ========================================
   ABOUT / SERVICES / CONTACT PAGES
   ======================================== */
.page-header {
    background: var(--hero-gradient);
    padding: 50px 0;
    text-align: center;
    border-radius: 0 0 32px 32px;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.page-header p {
    color: var(--text-medium);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.feature-card {
    padding: 1.5rem;
    border-radius: var(--border-radius-xl);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.contact-info-card {
    padding: 1.25rem;
    background: var(--bg-section);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
}

.contact-info-card h5 {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-info-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.form-card .form-label {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.form-card .form-control {
    border-radius: var(--border-radius-md);
    padding: 0.6rem 0.85rem;
    border: 1px solid var(--border-light);
    font-family: var(--font-family);
    font-size: 0.85rem;
    transition: var(--transition);
}

.form-card .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08);
}

.btn-primary-custom {
    background: var(--primary-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: var(--font-family);
}

.btn-primary-custom:hover {
    background: #333;
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-pill);
    padding: 0.45rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: var(--primary-dark);
    background: var(--bg-section);
}

/* Ride Summary Sidebar */
.ride-summary-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 1.25rem;
    border: 1px solid var(--border-light);
    position: sticky;
    top: 85px;
}

.ride-summary-card h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.ride-summary-item {
    margin-bottom: 1rem;
}

.ride-summary-item label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    display: block;
}

.ride-summary-item .value {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.ride-summary-item .value img {
    width: 14px;
    height: 14px;
    opacity: 0.4;
}

.edit-booking-link {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.edit-booking-link:hover {
    color: var(--accent-orange);
}

/* ========================================
   UTILITIES
   ======================================== */
.text-orange {
    color: var(--accent-orange) !important;
}

.bg-peach {
    background: var(--hero-gradient) !important;
}

.rounded-xl {
    border-radius: var(--border-radius-xl) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 35px 0 65px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .booking-form-grid {
        flex-direction: column;
    }

    .booking-form-grid .form-group-custom {
        min-width: 100%;
    }

    .swap-icon {
        align-self: center;
        margin: 0;
        transform: rotate(90deg);
    }

    .intercity-cta h2 {
        font-size: 1.75rem;
    }

    .intercity-form {
        flex-direction: column;
    }

    .intercity-form .form-group-custom {
        width: 100%;
    }

    .service-card {
        height: 300px;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-item .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 45px 0;
    }

    .hero-section {
        padding: 25px 0 50px;
        border-radius: 0 0 20px 20px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .booking-widget-wrapper {
        margin-top: -25px;
    }

    .widget-tabs-row {
        padding: 0.6rem 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .widget-form-row {
        padding: 0.85rem 1rem;
    }

    .intercity-cta {
        padding: 1.75rem 1.25rem;
    }

    .intercity-cta h2 {
        font-size: 1.4rem;
    }

    .service-card {
        height: 240px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .page-header {
        padding: 35px 0;
        border-radius: 0 0 20px 20px;
    }

    .page-header h1 {
        font-size: 1.85rem;
    }

    .departure-item {
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .departure-vehicle img {
        width: 55px;
        height: 35px;
    }

    .trust-badges {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .navbar-brand .brand-text {
        font-size: 0.85rem;
    }

    .btn-book-ride {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }

    .hero-section::before {
        width: 180px;
        height: 180px;
    }
}
/* ========================================
   REDESIGNED SECTIONS (Figma Match)
   ======================================== */

.pill-badge {
    display: inline-block;
    background: #F2F2F2;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

.reliability-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-top: 1rem;
    color: #111;
    letter-spacing: -1px;
}

.reliability-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
}

.stat-val {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #111;
    letter-spacing: -2px;
}

.stat-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

.feature-card-v2 {
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
}

.feature-img-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-v2 h4 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #111;
}

.feature-card-v2 p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Testimonials V2 */
.testimonial-carousel-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.testimonial-carousel-wrapper::-webkit-scrollbar { display: none; }

.testimonial-item-v2 {
    min-width: 420px;
    background: #FFF8F8;
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.testi-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.user-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.user-meta h5 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.user-rating {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    gap: 4px;
}
.user-rating i { color: #5B9AFF; }

.cta-center-v2 h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.btn-reserve-now {
    background: #111;
    color: #fff;
    border: none;
    padding: 1.15rem 4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}
.btn-reserve-now:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* FAQ V2 */
.faq-section-v2 { background: #fff !important; }

.faq-large-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.accordion-item-v2 {
    border-bottom: 1px solid #EEEEEE;
}

.accordion-button-v2 {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.8rem 0;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
    transition: var(--transition);
}

.accordion-button-v2:not(.collapsed) { color: #111; }
.accordion-button-v2 i { font-size: 1.25rem; }

.accordion-body-v2 {
    padding: 0 0 2rem;
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    max-width: 90%;
}

/* Footer V2 */
.footer-v2 {
    background: #000;
    color: #fff;
    padding: 5rem 0 3rem;
}

.footer-top-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo img { height: 32px; filter: grayscale(1) invert(1); }
.footer-logo span { font-weight: 700; font-size: 1.15rem; }

.footer-social-v2 {
    display: flex;
    gap: 1.5rem;
}
.footer-social-v2 a {
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition);
}
.footer-social-v2 a:hover { color: var(--accent-orange); }

.lang-dropdown {
    background: #F5F5F5;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #111;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-info-right {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .reliability-title { font-size: 2.5rem; }
    .reliability-stats { gap: 2rem; }
    .stat-val { font-size: 3rem; }
    .faq-large-title { font-size: 3rem; margin-bottom: 2.5rem; text-align: center; }
    .cta-center-v2 h2 { font-size: 2.5rem; }
    .footer-top-v2 { flex-direction: column; gap: 2.5rem; text-align: center; }
    .testimonial-item-v2 { min-width: 320px; padding: 1.5rem; }
    .faq-section-v2 .row > div { text-align: center; }
}

@media (max-width: 767px) {
    .stat-box { width: 50%; }
    .reliability-stats { flex-wrap: wrap; gap: 1.5rem 0; }
    .feature-img-wrapper { width: 180px; height: 180px; }
    .footer-info-right { gap: 1rem; flex-direction: column; align-items: center; width: 100%; text-align: center; }
    .footer-info-left { width: 100%; text-align: center; }
}
.accordion-button-v2.collapsed i::before { content: "\f282"; } /* chevron-down */
.accordion-button-v2:not(.collapsed) i::before { content: "\f286"; } /* chevron-up */
.accordion-button-v2.collapsed .faq-icon::before { content: "\f282"; } /* chevron-down */
.accordion-button-v2:not(.collapsed) .faq-icon::before { content: "\f286"; } /* chevron-up */

/* ========================================
   REFINED SUPPORT SECTION (Image 3 Match)
   ======================================== */
.support-section-v2 {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.support-header-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.support-header-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.info-icon-blue {
    background: #73B4FF;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.support-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.support-card-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.support-card-item i {
    font-size: 1.25rem;
    color: #111;
}

.support-card-item .content {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .support-cards-row { grid-template-columns: 1fr; }
    .support-header-v2 h2 { font-size: 1.8rem; }
    .support-section-v2 { padding: 2rem; }
}

/* ========================================
   REFINED FAQ SECTION (Image 5 Match)
   ======================================== */
.faq-section-refined {
    padding: 5rem 0;
}

.faq-title-refined {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -1px;
}

.accordion-refined .accordion-item {
    border: none;
    border-bottom: 1px solid #EDEDED;
    background: transparent;
}

.accordion-refined .accordion-button {
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    box-shadow: none !important;
    display: flex;
    justify-content: space-between;
}

.accordion-refined .accordion-button::after {
    background-image: none;
    font-family: "bootstrap-icons";
    content: "\f282"; /* chevron-down */
    transform: none;
    font-size: 1rem;
    opacity: 0.6;
}

.accordion-refined .accordion-button:not(.collapsed)::after {
    content: "\f286"; /* chevron-up */
}

.accordion-refined .accordion-body {
    padding: 0 0 1.5rem;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
}


/* ========================================
   REFINED FOOTER (Image 4 Match)
   ======================================== */
.footer-v2 {
    background: #000;
    color: #fff;
    padding: 3rem 0;
}

.footer-top-v2 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo img {
    height: 44px;
    width: auto;
}

.footer-social-v2 {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social-v2 a {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-v2 a:hover {
    background: var(--accent-orange);
    color: #fff;
}

.footer-lang {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lang-dropdown {
    background: #fff;
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lang-dropdown i:first-child {
    color: #4A90E2;
    font-size: 1.1rem;
}

.lang-dropdown i:last-child {
    color: #999;
    font-size: 0.8rem;
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.footer-info-right {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 991px) {
    .footer-top-v2 {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-social-v2 {
        position: static;
        transform: none;
        order: 2;
    }
    .footer-logo {
        order: 1;
    }
    .footer-lang {
        order: 3;
    }
    .footer-bottom-v2 { 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center; 
    }
    .footer-info-right { 
        justify-content: center; 
        flex-wrap: wrap; 
        gap: 1rem;
    }
}

.reliability-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}
.stat-box {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
}

/* ========================================
   REFINED INTERCITY PAGE (Image 6 Match)
   ======================================== */

.intercity-cta {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    color: #111;
    margin-top: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #F0F0F0;
}

.intercity-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #111;
}

.intercity-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.enhanced-search {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 2rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #111;
}

.search-stats .stat-badge {
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.offer-card {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}

.offer-card:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.enhanced-offer {
    border-color: rgba(0,0,0,0.05);
}

.offer-badge {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    background: #F2F2F2;
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
}

.offer-vendor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem; /* Space for badge if present */
}

.offer-vendor img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.vendor-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #111;
}

.vendor-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-text { font-weight: 700; font-size: 0.85rem; }
.reliability { font-size: 0.8rem; color: #888; }
.stars { color: #111; font-size: 0.8rem; letter-spacing: 1px; }

.offer-timeline {
    position: relative;
    padding-left: 1rem;
}

.timeline-point {
    margin-bottom: 1.25rem;
}

.timeline-point .time {
    font-weight: 800;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 0.15rem;
}

.timeline-point .location {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.duration-badge {
    background: #fff;
    border: 1.5px solid #F0F0F0;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.5rem 0 1.25rem;
}

.offer-vehicle {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.offer-vehicle img {
    max-width: 160px;
    height: auto;
}

.vehicle-name {
    font-weight: 800;
    font-size: 1rem;
    color: #111;
}

.vehicle-type {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.75rem;
}

.car-meta {
    display: flex;
    gap: 1rem;
}

.car-meta span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.offer-pricing .price-main {
    margin-bottom: 0.5rem;
}

.offer-pricing .price {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.offer-pricing .cents { font-size: 1rem; }
.price-per-person { font-size: 0.85rem; color: #888; font-weight: 500; }
.price-note { font-size: 0.8rem; color: #888; margin-bottom: 1rem; }

.offer-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-features span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-book-offer {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-book-offer:hover {
    background: #333;
    transform: translateX(3px);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.results-title { font-weight: 800; font-size: 1.5rem; margin-bottom: 0.25rem; }
.results-count { font-size: 0.95rem; color: #666; }

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-controls label { font-size: 0.85rem; font-weight: 700; color: #111; }
.sort-dropdown select {
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    color: #111;
    cursor: pointer;
    outline: none;
}


.enhanced-search .booking-form-grid {
    flex-direction: column !important;
    gap: 1.5rem;
}

/* Horizontal rows for the intercity search card */
.enhanced-search .form-group-custom {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 1rem;
    width: 100%;
}

.enhanced-search .form-group-custom label {
    flex: 0 0 100px;
    margin-bottom: 0;
    padding-top: 0.75rem;
}

.enhanced-search .form-group-custom .input-wrapper {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0;
}

.enhanced-search .input-suggestions {
    position: static;
    display: block;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    flex: 0 0 auto;
    text-align: right;
}

.enhanced-search .suggestion-item {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    color: #888;
    background: transparent;
}

.enhanced-search .btn-see-prices {
    width: 100%;
    background: #111;
    color: #fff;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.enhanced-search .swap-icon {
    display: none; /* Hide or reposition based on image */
}


/* ========================================
   LIGHT FOOTER (Image 7 Match)
   ======================================== */
.footer-light {
    background: #fff;
    color: #111;
    padding: 4rem 0 2rem;
    border-top: 1px solid #F0F0F0;
}

.footer-light .footer-heading {
    color: #111;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-light .footer-links a {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-light .footer-links a:hover {
    color: #111;
}

.footer-light .footer-newsletter p {
    color: #666;
}

.footer-light .input-group {
    background: #F8F8F8;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #EDEDED;
}

.footer-light .form-control {
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 0.9rem;
}

.footer-light .btn-join {
    background: #111;
    color: #fff;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
}

.footer-light .footer-social a {
    background: #F8F8F8;
    color: #111;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    transition: var(--transition);
}

.footer-light .footer-social a:hover {
    background: #111;
    color: #fff;
}

.footer-light .footer-bottom {
    border-top: 1px solid #F0F0F0;
    margin-top: 3rem;
    padding-top: 2rem;
    color: #888;
}

.footer-light .footer-bottom a {
    color: #888;
    text-decoration: none;
}


.departures-section {
    background: #fff;
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #F0F0F0;
    margin-top: 2rem;
}

.departures-header {
    background: transparent;
    color: #111;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.departure-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #F0F0F0;
}

.departure-item:last-child {
    border-bottom: none;
}

.departure-item:hover {
    background: transparent;
}

.departure-time .time {
    color: #111;
    font-size: 1.1rem;
}

.departure-route {
    color: #111;
    font-weight: 700;
    font-size: 1rem;
}

.departure-price {
    font-weight: 800;
    color: var(--accent-orange);
    font-size: 1.1rem;
}


.enhanced-search {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #F5F5F5;
}

.search-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-stats {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

.enhanced-search .form-group-custom {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #F5F5F5;
}

.enhanced-search .form-group-custom:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.enhanced-search .form-group-custom label {
    flex: 0 0 180px;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.enhanced-search .input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.enhanced-search .input-wrapper i {
    font-size: 1.1rem;
    color: #111;
}

.enhanced-search .input-wrapper input,
.enhanced-search .input-wrapper select {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
    background: transparent;
    border: none;
    padding: 0;
}

.enhanced-search .input-suggestions {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
}

.enhanced-search .suggestion-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
}

.enhanced-search .suggestion-item:hover {
    color: #111;
}

.btn-ic-search {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1.25rem;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.btn-ic-search:hover {
    background: #222;
    transform: translateY(-2px);
}

/* Offer Card Refinement */
.offer-card {
    border: 1px solid #F0F0F0;
    border-radius: 30px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.offer-card:hover {
    border-color: #FFC091; /* Subtle orange border on hover like the image */
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.vendor-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.vendor-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.vendor-name {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.offer-timeline-v2 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-row .time {
    font-weight: 800;
    font-size: 1.3rem;
    min-width: 100px;
}

.timeline-row .loc {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.duration-pill {
    background: #fff;
    border: 1px solid #EEE;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 2rem;
}

.car-display {
    text-align: center;
}

.car-img-large {
    max-width: 280px;
    margin-bottom: 1rem;
}

.car-stats-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: #888;
    font-weight: 600;
    font-size: 0.85rem;
}

.car-stats-row i { font-size: 0.9rem; }

.price-box {
    text-align: right;
}

.price-box .main-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
}

.price-box .cents { font-size: 1.25rem; }


/* ========================================
   ULTIMATE INTERCITY REFINEMENT
   ======================================== */

.enhanced-search {
    border: 1px solid #EDEDED;
    padding: 3rem;
}

.search-header {
    border-bottom: 2px solid #F5F5F5;
    margin-bottom: 1.5rem;
}

.search-title {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.enhanced-search .form-group-custom label {
    flex: 0 0 160px;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
}

.enhanced-search .input-wrapper i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.enhanced-search .input-wrapper input {
    font-weight: 700;
}

.enhanced-search .input-suggestions .suggestion-item {
    font-weight: 500;
    opacity: 0.6;
}

/* Passenger row chevron */
.passenger-row {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.passenger-row::after {
    content: '\F282'; /* bi-chevron-down */
    font-family: 'bootstrap-icons';
    position: absolute;
    right: 0;
    font-weight: 900;
    pointer-events: none;
}

.enhanced-search select {
    cursor: pointer;
    min-width: 50px;
}

/* Offer Card High Fidelity */
.offer-card {
    border: 1px solid #EDEDED;
    border-radius: 40px;
    padding: 3rem;
}

.vendor-logo {
    width: 56px;
    height: 56px;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.vendor-logo i {
    font-size: 1.5rem;
}

.offer-timeline-v2 .time {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.offer-timeline-v2 .loc {
    color: #888;
}

.duration-pill {
    margin-left: 1.5rem;
    border-color: #EEE;
    color: #666;
}

.car-display .car-img-large {
    max-width: 320px;
}

.car-display .vehicle-name {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.car-stats-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-box .main-price {
    font-size: 2.8rem;
    letter-spacing: -1px;
}

.btn-book-offer {
    background: #111;
    border-radius: 12px;
    padding: 1.1rem 2.5rem;
}


/* ========================================
   INTERCITY V3 (MATCHING IMAGE 9)
   ======================================== */

.intercity-page {
    background: #F8F8F8;
}

.hero-intercity {
    background: linear-gradient(180deg, #FFEFD5 0%, #FFFFFF 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-intercity h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-intercity p {
    font-size: 1.25rem;
    color: #444;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.search-container-v3 {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.search-card-v3 {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.search-row-1 {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-row-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr auto;
    gap: 2rem;
    align-items: center;
}

.field-group {
    display: flex;
    flex-direction: column;
}

.field-group label {
    font-size: 0.75rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.field-group .val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    border: none;
    background: transparent;
    padding: 0;
    outline: none;
    width: 100%;
}

.swap-btn {
    width: 40px;
    height: 40px;
    background: #F8F8F8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.swap-btn:hover { background: #EEE; }

.btn-search-primary {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.85rem 2.5rem;
    font-weight: 800;
    font-size: 1.1rem;
}

/* Results Section Styles */
.results-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.results-date-header {
    font-weight: 800;
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem;
}

/* Offer Card V3 */
.offer-card-v3 {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}

.offer-card-v3:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
}

.offer-vendor-v3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vendor-logo-v3 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.vendor-name-v3 { font-weight: 800; font-size: 1rem; }
.vendor-rating-v3 { font-size: 0.8rem; color: #666; font-weight: 600; }

.offer-content-v3 {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

/* Timeline V3 */
.timeline-v3 {
    position: relative;
    padding-left: 20px;
}

.timeline-v3::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #DDD;
}

.timeline-item-v3 {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item-v3:last-child { margin-bottom: 0; }

.timeline-item-v3::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 8px;
    width: 9px;
    height: 9px;
    background: #DDD;
    border-radius: 50%;
}

.timeline-item-v3 .time { font-weight: 800; font-size: 1.15rem; margin-bottom: 0.25rem; }
.timeline-item-v3 .loc { font-size: 0.85rem; color: #666; font-weight: 500; }

.duration-pill-v3 {
    border: 1px solid #EEE;
    border-radius: 8px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #444;
    display: inline-block;
    margin: 0.5rem 0;
}

.car-box-v3 {
    text-align: center;
}

.car-img-v3 {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.car-name-v3 { font-weight: 800; font-size: 0.95rem; margin-bottom: 0.75rem; }
.car-specs-v3 {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.spec-item-v3 {
    border: 1px solid #EEE;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.price-box-v3 {
    text-align: right;
}

.price-v3 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.price-v3 span { font-size: 1rem; }

.price-note-v3 {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
    margin: 1rem 0;
}

.btn-book-v3 {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.75rem 2.5rem;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}


/* ========================================
   STANDARD HEADER & FOOTER (Image Match)
   ======================================== */

.navbar {
    background: #000 !important;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img {
    height: 32px;
}



.navbar-nav .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.language-select, .footer-lang {
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
}

.language-select img {
    height: 18px;
    border-radius: 2px;
}

.btn-book-ride {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-book-ride:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Footer Standard */
.footer-v2 {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.footer-social-v2 {
    display: flex;
    gap: 1rem;
}

.footer-social-v2 a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social-v2 a:hover {
    background: var(--accent-orange);
    color: #fff;
    transform: translateY(-2px);
}

.lang-dropdown-v2 {
    background: #1A1A1A;
    color: #fff;
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info-right {
    display: flex;
    gap: 2rem;
}

@media (max-width: 991px) {
    .footer-top-v2 {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-bottom-v2 {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   REFINED DEPARTURES & INTERCITY (Image v4)
   ======================================== */

.intercity-main-section {
    background: #111;
    padding: 100px 0;
    margin-top: 100px;
}

.search-bar-v4 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    max-width: 1100px;
    gap: 0;
}

.search-col {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.search-col label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.25rem;
    padding-left: 0.75rem;
}

.search-col .form-select {
    color: #fff !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.search-divider {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.swap-circle {
    width: 38px;
    height: 38px;
    background: #000;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.swap-circle:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-search-v4 {
    background: #222 !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 50px !important;
    padding: 0.8rem 2.5rem !important;
    font-weight: 700;
    transition: var(--transition);
}

.btn-search-v4:hover {
    background: #333 !important;
    border-color: var(--accent-orange) !important;
}

/* Departures Card */
.departures-card-v4 {
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
}

.card-header-v4 {
    background: #333;
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.departure-row-v4 {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #EEE;
    transition: var(--transition);
}

.departure-row-v4:hover {
    background: #F9F9F9;
}

.d-col-time {
    min-width: 250px;
}

.d-time {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
}

.d-ampm {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.d-route-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-line {
    background: #F0F0F0;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #999;
}

.d-col-car {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.d-col-car img {
    height: 45px;
    object-fit: contain;
}

.d-car-name {
    font-weight: 700;
    color: #444;
    font-size: 0.95rem;
}

.d-col-stats {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem;
}

.badge-stat {
    background: #F5F5F5;
    border: 1px solid #EDEDED;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.d-col-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    min-width: 120px;
    text-align: right;
}

.d-cents {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
}

.d-col-action {
    padding-left: 2rem;
}

.btn-book-v4 {
    font-weight: 800;
    color: var(--accent-orange);
    text-decoration: none;
    transition: var(--transition);
}

.btn-book-v4:hover {
    color: #000;
    transform: translateX(3px);
}

.btn-view-offers-v4 {
    background: #333;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-view-offers-v4:hover {
    background: #000;
    transform: scale(1.05);
    color: #fff;
}

@media (max-width: 991px) {
    .search-bar-v4 {
        flex-direction: column;
        gap: 1rem;
    }
    .search-col {
        width: 100%;
        border: none !important;
    }
    .departure-row-v4 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .d-col-price {
        text-align: center;
    }
    .d-col-action {
        padding: 0;
    }
}
