/* Moved CSS from citylink_homepage.html */

:root {
    --color-black: #000;
    --color-gold: #D4AF37;
    --color-yellow: #FFC107;
    --color-red-orange: #FF5722;
    --color-orange: #FF9800;
    --color-white: #FFF;
    --color-gray-light: #F5F5F5;
    --color-gray: #666;
    --color-gray-dark: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-gray-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--color-black)
}

/* Alert Bar */
.alert-bar {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 1050;
}

.alert-bar i {
    margin-right: 8px;
    animation: pulse 2s infinite
}

@keyframes pulse {
    50% {
        opacity: .5
    }
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, .98);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    transition: .3s;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .12);
    background: rgba(255, 255, 255, 1)
}

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

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 38px;
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-logo {
    max-height: 50px;
    width: auto;
    filter: brightness(1.1);
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.85;
}

.navbar-nav .nav-link {
    /* color: var(--color-gray-dark) !important; */
    font-weight: 600;
    margin: 0 15px;
    position: relative;
}

.btn-login {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    border: none;
    color: #fff !important;
    padding: 10px 4px 10px 4px;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, .3);
}

.btn-login,
.btn-login * {
    color: #fff !important;
}

.btn-login,
.btn-login i {
    color: #fff !important;
}

.btn-login:hover {
    background: linear-gradient(135deg, var(--color-orange), var(--color-red-orange));
    transform: translateY(-2px);
}

/* User Avatar & Dropdown */
.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 87, 34, .3);
}

.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.03);
    margin-left: 10px;
}

.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
}

.navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    margin-left: 8px;
    border-top-color: var(--color-gray-dark);
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--color-gray-dark);
    transition: all 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 87, 34, 0.08);
    color: var(--color-red-orange);
}

.navbar .dropdown-menu .dropdown-item i {
    width: 20px;
    color: var(--color-gray);
}

.navbar .dropdown-menu .dropdown-item:hover i {
    color: var(--color-red-orange);
}

.navbar .dropdown-menu .dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

.navbar .dropdown-menu .dropdown-item.text-danger:hover i {
    color: #dc3545;
}

.navbar .dropdown-menu .dropdown-divider {
    margin: 8px 15px;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 100;
    /* Background handled inline for dynamic image, fallback here if needed */
    padding: 60px 20px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    width: 100%;
    /* max-width removed to allow container class to control width */
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    padding: 0 20px;
    animation: slideInLeft 1s ease both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .5);
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--color-gold);
    display: inline-block
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .9)
}

.hero-phone {
    display: inline-block;
    margin-bottom: 30px;
}

.phone-text {
    display: inline-flex;
    align-items: center;
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

.phone-text i {
    font-size: 1.2rem;
    margin-right: 10px;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px 10px 10px 0;
    transition: .3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    border: none;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 87, 34, .4);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, .6)
}

.btn-outline-gold {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px)
}

/* Button Outline */
.btn-outline {
    border: 2px solid #334155;
    color: #334155;
    background: transparent;
}

.btn-outline:hover {
    background: #334155;
    color: white;
    transform: translateY(-2px);
}

/* Button Secondary */
.btn-secondary {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.3);
}

/* Confirmation Page Actions */
.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.confirmation-actions .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.confirmation-actions .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #c9a227 100%);
    border: none;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.confirmation-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.confirmation-actions .btn-outline {
    border: 2px solid #e5e7eb;
    color: #475569;
    background: white;
}

.confirmation-actions .btn-outline:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.confirmation-footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 0 0 16px 16px;
}

.confirmation-footer p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.confirmation-footer strong {
    color: #1e293b;
}

/* Quick Booking - White Card Design */
.quick-booking {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    z-index: 10;
    animation: slideInRight 1s ease 0.2s both;
    min-width: 360px;
    max-width: 420px;
    margin-left: auto;
    /* Aligns form to the right edge */
}

/* Quick Booking Title */
.quick-booking-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.quick-booking-title i {
    color: var(--color-gold);
    margin-right: 8px;
}


/* Booking Tabs - Bordered Style Like Step1 */
.booking-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.booking-tab {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #6c757d;
}

.booking-tab i {
    font-size: 1rem;
}

.booking-tab:hover {
    border-color: var(--color-gold);
    color: #1a1a2e;
}

.booking-tab:focus {
    outline: none;
    box-shadow: none;
}

.booking-tab.active {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    color: #1a1a2e;
}

.booking-tab.active i {
    color: var(--color-gold);
}

/* Booking Fields - Dark Labels */
.booking-field {
    margin-bottom: 12px;
}

.quick-booking .form-label {
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.quick-booking .form-control,
.quick-booking .form-select {
    border: 1px solid #e9ecef;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1a1a2e;
    background: #f8f9fa;
    transition: all 0.3s ease;
    width: 100%;
}

.quick-booking .form-control::placeholder {
    color: #999;
}

.quick-booking .form-control:focus,
.quick-booking .form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
    background: white;
}

.quick-booking textarea.form-control {
    resize: none;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    font-family: 'Open Sans', sans-serif;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 10px !important;
}

/* Ensure input group stays in one row */
.quick-booking .input-group,
.booking-card .input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.quick-booking .input-group .form-control,
.booking-card .input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.quick-booking .input-group .btn,
.booking-card .input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    /* Ensure button is clickable */
}

/* Passenger/Luggage Counter (+/- Buttons) */
.passenger-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    background: #fff;
    /* White background for better contrast */
    border-radius: 8px;
    border: 1px solid #ced4da;
    /* Standard bootstrap border color */
    overflow: hidden;
    height: 42px;
    width: 100%;
}

.btn-counter {
    width: 40px;
    height: 100%;
    border: none;
    background: #f8f9fa;
    /* Light grey background for buttons */
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.btn-counter:hover {
    background: #e9ecef;
    color: #000;
}

.btn-counter:active {
    background: #dee2e6;
}

.passenger-input {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    background: transparent;
    border: none;
    /* Remove internal borders */
    border-left: 1px solid #e9ecef;
    border-right: 1px solid #e9ecef;
    outline: none;
    padding: 0;
    height: 100%;
    width: 100%;
    margin: 0;
}



.flatpickr-calendar.open {
    z-index: 99999;
}

/* Month Header */
.flatpickr-months {
    padding: 8px 0;
}

.flatpickr-months .flatpickr-month {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    height: 40px;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: white;
    fill: white;
    padding: 8px 12px;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: white;
    width: 14px;
    height: 14px;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--color-orange);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--color-orange);
}

.flatpickr-current-month {
    padding-top: 5px;
    font-size: 1.1rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: white;
    font-weight: 700;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: #1a1a2e;
    color: white;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: white;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: white;
}

/* Weekdays Header */
.flatpickr-weekdays {
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
}

.flatpickr-weekday {
    color: #64748b;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Days */
.flatpickr-days {
    padding: 8px;
}

.dayContainer {
    padding: 0;
}

.flatpickr-day {
    color: #1e293b;
    font-weight: 500;
    border-radius: 8px;
    max-width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 2px;
}

.flatpickr-day:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.flatpickr-day.today {
    border-color: var(--color-orange);
    background: rgba(255, 152, 0, 0.1);
}

.flatpickr-day.today:hover {
    background: rgba(255, 152, 0, 0.2);
    border-color: var(--color-orange);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    border-color: var(--color-orange);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
}

/* Disabled/Past Days */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #cbd5e1;
    background: transparent;
}

/* Next/Previous Month Days (lighter) */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #94a3b8;
}

/* Focus state */
.flatpickr-day:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.3);
}

/* Google Places Autocomplete Styles */
.pac-container {
    font-family: 'Open Sans', sans-serif;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: none;
    margin-top: 5px;
    z-index: 10000;
}

.pac-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.pac-item:hover {
    background: #f8f9fa;
}

.pac-item-query {
    color: #333;
    font-weight: 500;
}

.pac-icon {
    margin-right: 10px;
}

/* Book Button */
.btn-book {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: none;
    color: white;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    color: white;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 50px)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0)
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    background: var(--color-gray-light);
    position: relative;
}

.what-we-do-slider-wrapper {
    position: relative;
    width: 100%;
}

.what-we-do-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.what-we-do-slide {
    display: none;
    width: 100%;
    flex-shrink: 0;
    animation: fadeIn 0.5s ease;
}

.what-we-do-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.what-we-do-slide h3 {
    font-size: 2.2rem;
    color: var(--color-black);
    margin-bottom: 20px;
    font-weight: 700;
}

.what-we-do-slide p {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.what-we-do-slide img {
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-we-do-slide img:hover {
    transform: scale(1.05);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-red-orange);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(255, 87, 34, .3);
}

.slider-btn:hover {
    background: var(--color-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 87, 34, .5);
}

.slider-prev {
    left: -70px;
}

.slider-next {
    right: -70px;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-red-orange);
    width: 35px;
    border-radius: 10px;
}

.indicator:hover {
    background: rgba(0, 0, 0, .4);
}

/* Services */
.services-section {
    padding: 150px 0 80px;
    background: var(--color-gray-light)
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
    border-radius: 2px;
}

.section-title p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-top: 20px
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: .4s;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15)
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: .4s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg)
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px
}

.service-card p {
    color: var(--color-gray);
    margin-bottom: 20px;
    line-height: 1.6
}

/* Enhanced Service Cards */
.service-card-enhanced {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-read-more:hover {
    color: var(--color-red-orange);
    text-decoration: underline;
}

.btn-learn {
    color: var(--color-gold) !important;
    font-weight: 600;
    transition: color .3s;
}

.btn-learn:hover {
    color: #B8860B !important;
    text-decoration: underline;
}

/* Vehicles */
.fleet-section {
    padding: 80px 0;
    background: white
}

.vehicle-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    transition: .4s;
    height: 100%;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2)
}

.vehicle-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--color-gray-light);
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.1)
}

.badge-popular {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
}

.vehicle-info {
    padding: 25px
}

.vehicle-capacity {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--color-gray)
}

.vehicle-capacity span i {
    color: var(--color-gold);
    margin-right: 5px
}

.vehicle-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-red-orange);
    margin-bottom: 15px
}

.vehicle-price small {
    font-size: .9rem;
    color: var(--color-gray);
    font-weight: 400
}

.btn-book-vehicle {
    width: 100%;
    background: var(--color-black);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-book-vehicle:hover {
    background: var(--color-gold);
    color: var(--color-black)
}

/* Why Us */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: white
}

.why-section .section-title h2,
.why-section .section-title p {
    color: white
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: .3s
}

.feature-box:hover {
    transform: translateY(-5px)
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px
}

.feature-box h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px
}

.feature-box p {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-gray-light)
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    margin: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--color-gold);
    opacity: .2;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
    line-height: 1.8
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-black)
}

.author-rating {
    color: var(--color-gold)
}

/* Tour Packages */
.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .1);
    transition: .4s;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .2)
}

.tour-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.tour-card:hover .tour-img img {
    transform: scale(1.1)
}

.badge-tour {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
}

.tour-info {
    padding: 25px
}

.tour-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.tour-description {
    font-size: .95rem;
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.6
}

.tour-details {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    color: var(--color-gray);
    margin-bottom: 15px
}

.tour-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-red-orange);
    margin-bottom: 15px
}

.tour-price small {
    font-size: .9rem;
    color: var(--color-gray);
    font-weight: 400
}

.btn-book-tour {
    width: 100%;
    background: var(--color-black);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-book-tour:hover {
    background: var(--color-gold);
    color: var(--color-black)
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    color: white;
    text-align: center
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: .95
}

.cta-section .btn {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: var(--color-red-orange);
    border: none;
    transition: .3s;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, .3)
}

/* Destinations Section */
.destinations-section {
    background: var(--color-black);
    padding: 80px 0;
    color: white;
}

.destinations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 3px;
}

.destinations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destinations-list li {
    margin-bottom: 15px;
}

.destinations-list a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.destinations-list a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.view-all-destinations {
    color: #17a2b8;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-destinations:hover {
    color: #20c997;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: white;
    padding: 60px 0 20px
}

.footer h5 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 25px
}

.footer ul {
    list-style: none;
    padding: 0
}

.footer ul li {
    margin-bottom: 12px
}

.footer ul li a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: .3s
}

.footer ul li a:hover {
    color: var(--color-gold);
    padding-left: 5px
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, .5)
}

/* Mobile tweaks */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3rem
    }

    .btn-hero {
        margin: 10px 5px;
        font-size: 1rem
    }

    .quick-booking {
        max-width: 400px;
        margin: 0 auto;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
    }

    .btn-login {
        margin: 18px auto 0 auto;
        display: block;
        padding: 10px 28px;
        font-size: 1.1rem;
    }

    /* User dropdown mobile */
    .navbar-nav .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
        justify-content: center;
        margin: 18px auto 0 auto;
        max-width: 200px;
    }

    .navbar .dropdown-menu {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-wrapper {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-content p {
        font-size: 1rem
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem
    }

    .quick-booking {
        padding: 25px 20px;
        max-width: 100%;
    }

    .booking-tab {
        font-size: 0.8rem;
        padding: 10px 12px;
    }

    .quick-booking .form-control,
    .quick-booking .form-select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 180px 0 60px
    }

    .section-title h2 {
        font-size: 2rem
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .btn-login {
        margin: 16px auto 0 auto;
        display: block;
        padding: 10px 24px;
        font-size: 1rem;
    }

    /* User dropdown mobile */
    .navbar-nav .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
        justify-content: center;
        margin: 16px auto 0 auto;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin: 8px 5px 8px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .quick-booking {
        padding: 20px 15px;
        min-width: auto;
    }

    .booking-tabs {
        margin-bottom: 15px;
    }

    .booking-tab {
        font-size: 0.75rem;
        padding: 10px;
    }

    .booking-field {
        margin-bottom: 10px;
    }

    .quick-booking .form-control,
    .quick-booking .form-select {
        padding: 12px;
        font-size: 0.9rem;
    }

    .btn-book {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .btn-login {
        margin: 12px auto 0 auto;
        display: block;
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    /* User dropdown mobile */
    .navbar-nav .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
        justify-content: center;
        margin: 12px auto 0 auto;
        max-width: 180px;
        padding: 5px 10px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* What We Do Responsive */
    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .what-we-do-slide h3 {
        font-size: 1.8rem;
    }

    .what-we-do-slide p {
        font-size: 0.95rem;
    }

    .what-we-do-slide img {
        height: 300px;
    }
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    position: relative;
}

.booking-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.booking-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    /* Overlap the container border */
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.3s;
}

.booking-tab.active {
    color: var(--color-black);
    font-weight: 700;
}

/* .booking-tab.active::after {
    background: var(--color-black);
} */

/* Custom Time Picker */
.custom-time-picker {
    display: none;
    position: fixed;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    padding: 20px;
    border: 1px solid #e5e7eb;
    min-width: 280px;
}

.time-picker-columns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
}

.time-col {
    text-align: center;
    max-height: 180px;
    overflow-y: auto;
    width: 32%;
    scrollbar-width: none;
}

.time-col::-webkit-scrollbar {
    display: none;
}

.time-col-header {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-option {
    padding: 8px 0;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 4px;
    transition: 0.2s;
}

.time-option:hover {
    background: #f8f9fa;
}

.time-option.selected {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    color: white;
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.btn-confirm-time {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    color: white;
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-confirm-time:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* Pagination Customization */
.pagination {
    margin-top: 30px;
}

.page-item .page-link {
    color: var(--color-black);
    border: none;
    margin: 0 5px;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--color-red-orange), var(--color-orange));
    color: white;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

.page-item .page-link:hover {
    background-color: #e9ecef;
    color: var(--color-red-orange);
    transform: translateY(-2px);
}

.page-item.disabled .page-link {
    background-color: transparent;
    color: #ccc;
    cursor: not-allowed;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50% !important;
    background-color: transparent;
    font-size: 1.2rem;
}

.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background-color: transparent;
    color: var(--color-red-orange);
}

/* Custom Outline Button */
.btn-outline-custom {
    color: #FF6B35;
    border: 2px solid #FF6B35;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mobile Sidebar Customization - Moved to end for specificity */
@media (max-width: 991.98px) {

    /* Align Logo to Left */
    .navbar-brand {
        margin-right: auto;
    }

    .offcanvas-end {
        width: auto !important;
        /* Let content dictate width */
        min-width: 260px !important;
        /* Ensure not too skinny */
        max-width: 90vw !important;
        height: fit-content !important;
        /* Height strictly matches content */
        bottom: unset !important;
        /* Release bottom anchor */
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: unset !important;
        margin: 0 !important;
        float: none !important;
        border-left: none;
        background-color: #fff !important;
        z-index: 1055 !important;
        transform: none !important;
        transition: transform 0.3s ease-in-out;
        display: flex !important;
        flex-direction: column !important;
        border-bottom-left-radius: 12px;
        /* Polish */
        box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.2);
        /* Drop shadow helps separation */
    }

    /* ... transform rules ... */

    .offcanvas-header {
        padding: 0;
        height: 60px;
        display: flex;
        align-items: center;
        width: 100%;
        background: #F36F21;
        /* Header background matches button */
    }

    .btn-close-custom {
        width: 100% !important;
        background-color: #F36F21 !important;
        color: white !important;
        font-weight: 700;
        text-transform: uppercase;
        border: none;
        border-radius: 0;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between !important;
        height: 100%;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .btn-close-custom:hover {
        background-color: #e65100 !important;
    }

    .offcanvas-body {
        padding: 0;
        flex-grow: 0 !important;
        /* Prevent expansion */
        height: auto !important;
        overflow-y: auto;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
        /* Ensure block layout */
    }

    .mobile-menu-item {
        border-bottom: 1px solid #e9ecef;
    }

    .mobile-menu-link {
        display: block;
        padding: 15px 20px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: background 0.2s;
    }

    .mobile-menu-link:hover {
        background-color: #f8f9fa;
        color: #F36F21;
    }

    .mobile-menu-link i {
        width: 20px;
        text-align: center;
        margin-right: 10px;
        color: #777;
    }
}