/* 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: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,.8), rgba(0,0,0,.5)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?w=1600') center/cover;
    padding: 60px 20px;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    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 */
.quick-booking {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,.2);
    z-index: 10;
    animation: slideInRight 1s ease 0.2s both;
    min-width: 320px;
    max-width: 380px;
}

/* Booking Tabs */
.booking-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.booking-tab {
    background: none;
    border: none;
    outline: none;
    padding: 0 0 8px 0;
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-tab:hover {
    color: #333;
}

.booking-tab:focus {
    outline: none;
    box-shadow: none;
}

.booking-tab.active {
    color: #333;
    font-weight: 500;
}

.booking-tab.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

/* Booking Fields */
.booking-field {
    margin-bottom: 12px;
}

.quick-booking .form-control,
.quick-booking .form-select {
    border: 1px solid #e0e0e0;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    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: #333;
    box-shadow: none;
    outline: none;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    font-family: 'Open Sans', sans-serif;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.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:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #D4AF37;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #D4AF37;
}

.flatpickr-current-month {
    padding-top: 5px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: rgba(255,255,255,0.1);
}

/* Month Dropdown Options */
.flatpickr-current-month .flatpickr-monthDropdown-months option {
    background: #1a1a2e;
    color: white;
    padding: 8px 12px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months option:checked {
    background: #D4AF37;
    color: #1a1a2e;
}

/* Year input */
.flatpickr-current-month input.cur-year {
    background: transparent;
    border: none;
}

/* 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: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.flatpickr-day.today:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected.today {
    background: linear-gradient(135deg, #D4AF37 0%, #c9a227 100%);
    border-color: #D4AF37;
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 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(212, 175, 55, 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;
    }
}
