/* Enhanced Search Box Responsive */
.search-box-wrapper {
    position: relative;
    margin-top: -50px;
    padding: 0 15px;
    z-index: 100;
}

.search-box {
    background: var(--light-color);
    box-shadow: var(--shadow-lg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(125,
25,
53,
0.1);
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-item {
    flex: 1;
    min-width: 200px;
}

.search-item label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.btn-search {
    height: 50px;
    padding: 0 30px;
    white-space: nowrap;
    width: auto;
    min-width: 160px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .search-box-wrapper {
    margin-top: 20px;
}

.search-row {
    flex-direction: column;
}

.search-item {
    width: 100%;
}

.btn-search {
    width: 100%;
}

.hero-slider,
.slide-img {
    height: 70vh;
}

}

@media (max-width: 768px) {
    .search-box-wrapper {
    display: none;
}

.mobile-search-trigger {
    display: flex;
}

.hero-slider,
.slide-img {
    height: 60vh;
}

}

/* Hero Slider */
.hero-slider {
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    filter: brightness(0.65);
}

/* Hero Slider Content Styles */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,
-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
}

.slide-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: rgba(255,
255,
255,
0.9);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 2px 2px 4px rgba(0,
0,
0,
0.3);
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    background: linear-gradient(45deg,
#fff,
rgba(255,
255,
255,
0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(0,
0,
0,
0.2);
}

.slide-description {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    color: rgba(255,
255,
255,
0.95);
    text-shadow: 2px 2px 4px rgba(0,
0,
0,
0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.btn-slider {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-slider-primary {
    background: var(--primary-color);
    color: white;
}

.btn-slider-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 20px rgba(139,
0,
0,
0.3);
}

.btn-slider-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,
255,
255,
0.8);
}

.btn-slider-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,
0,
0,
0.2);
}

.btn-slider i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-slider:hover i {
    transform: translateX(5px);
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(20px);
}

to {
    opacity: 1;
    transform: translateY(0);
}

}

.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-description,
.swiper-slide-active .slide-buttons {
    animation-play-state: running;
}

.swiper-slide:not(.swiper-slide-active) .slide-subtitle,
.swiper-slide:not(.swiper-slide-active) .slide-title,
.swiper-slide:not(.swiper-slide-active) .slide-description,
.swiper-slide:not(.swiper-slide-active) .slide-buttons {
    opacity: 0;
    transform: translateY(20px);
}

@media (max-width: 991px) {
    .slide-title {
    font-size: 3rem;
}

.slide-description {
    font-size: 1.2rem;
}

.btn-slider {
    padding: 12px 25px;
    font-size: 1rem;
}

}

@media (max-width: 768px) {
    .slide-title {
    font-size: 2.5rem;
}

.slide-subtitle {
    font-size: 1rem;
}

.slide-description {
    font-size: 1.1rem;
}

.slide-buttons {
    flex-direction: column;
    gap: 15px;
}

.btn-slider {
    width: 100%;
    justify-content: center;
}

}

/* Trip Type Selection */
.trip-type-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,
0,
0,
0.1);
    justify-content: center;
}

.trip-type-option {
    position: relative;
}

.trip-type-option input[type="radio"] {
    display: none;
}

.trip-type-option label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.9rem;
    min-width: 120px;
    justify-content: center;
}

.trip-type-option label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.trip-type-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb),
0.05);
    color: var(--primary-color);
}

.trip-type-option input[type="radio"]:checked + label i {
    color: var(--primary-color);
}

/* Desktop Search Box */
.desktop-search-wrapper {
    border-top: 1px solid rgba(0,
0,
0,
0.1);
    position: relative;
    z-index: 100;
}

.desktop-search-wrapper .container {
    max-width: none;
    width: 80%;
}

/* Mobile Search Box */
.mobile-search-wrapper {
    display: none;
    padding: 0 15px;
    margin-top: -50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 99;
}

/* Common Search Box Styles */
.search-box {
    background: var(--light-color);
    box-shadow: var(--shadow-lg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(125,
25,
53,
0.1);
}

.mobile-search-wrapper .search-box {
    margin-bottom: 0;
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-item {
    flex: 1;
    min-width: 200px;
}

.search-item label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 16px;
    z-index: 1;
}

.search-input-wrapper .fa-chevron-down {
    left: auto;
    right: 15px;
    font-size: 12px;
    color: var(--gray);
}

.search-box .form-control,
.search-box .form-select,
.search-box .passenger-trigger {
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
    padding: 10px 15px 10px 45px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: white;
    color: var(--gray-dark);
}

.search-box .passenger-trigger {
    padding-right: 35px;
    margin: 0;
    height: auto;
    min-height: 50px;
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(125,
25,
53,
0.15);
}

.btn-search {
    height: 50px;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    justify-content: center;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Passenger Select Styles */
.passenger-select {
    position: relative;
}

.passenger-trigger {
    cursor: pointer;
    user-select: none;
    padding-right: 15px;
}

.passenger-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,
0,
0,
0.1);
    display: none;
    z-index: 1000;
    border: 1px solid rgba(0,
0,
0,
0.1);
    min-width: 280px;
}

.passenger-select.active .passenger-dropdown {
    display: block;
}

.passenger-type {
    padding: 10px 0;
}

.passenger-type h6 {
    color: var(--dark-color);
    font-weight: 600;
}

.passenger-type small {
    font-size: 0.8rem;
}

.btn-counter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.btn-counter i {
    position: static;
    transform: none;
    font-size: 12px;
    display: inline-block;
    line-height: 1;
}

.btn-counter:hover {
    background: var(--primary-color);
    color: white;
}

.btn-counter.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: var(--gray);
    color: var(--gray);
}

.passenger-count {
    font-weight: 600;
    color: var(--dark-color);
    min-width: 20px;
    text-align: center;
}

@media (max-width: 991px) {
    .hero-slider,
.slide-img {
    height: 70vh;
}

.search-row {
    flex-direction: column;
}

.search-item {
    width: 100%;
}

.mobile-search-wrapper {
    display: block;
}

.quick-pricing {
    padding-top: 30px;
}

.desktop-search-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

}

@media (min-width: 992px) {
    .mobile-search-wrapper {
    display: none;
}

.search-item {
    min-width: 180px;
}

.btn-search {
    margin-top: 24px;
}

}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--gray-dark);
    order: 1;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 0;
    order: 2;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg,
var(--light-color) 0%,
#fff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right,
transparent 49%,
var(--light-color) 51%);
}

.feature-card {
    background: var(--light-color);
    box-shadow: var(--shadow-md);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(125,
25,
53,
0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: rgba(13,
110,
253,
0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(45deg,
var(--primary-color),
var(--gold-dark));
}

.feature-icon i {
    font-size: 35px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Quick Pricing Section Enhancement */
.quick-pricing {
    padding: 120px 0;
    background: linear-gradient(135deg,
var(--light-color) 0%,
#fff 50%,
var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.quick-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right,
transparent 0%,
var(--primary-color) 25%,
var(--gold) 50%,
var(--primary-color) 75%,
transparent 100%
    );
}

.quick-pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 500px;
    background: linear-gradient(45deg,
var(--primary-color) 0%,
transparent 100%);
    opacity: 0.03;
    transform: rotate(-5deg);
    pointer-events: none;
}

.quick-pricing .section-title {
    position: relative;
    margin-bottom: 70px;
}

.quick-pricing .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg,
var(--primary-color),
var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.quick-pricing .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right,
var(--primary-color),
var(--gold));
    border-radius: 2px;
}

.quick-pricing .section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
    position: relative;
}

.quick-pricing .container {
    position: relative;
}

.quick-pricing .container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
var(--gold) 0%,
transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.quick-pricing .container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
var(--primary-color) 0%,
transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

/* Price Card Enhancement */
.price-card {
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,
0,
0,
0.08);
    transition: all 0.4s cubic-bezier(0.175,
0.885,
0.32,
1.275);
    margin-bottom: 30px;
    border: 1px solid rgba(139,
0,
0,
0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
var(--primary-color),
var(--gold));
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139,
0,
0,
0.15);
}

.price-card:hover::before {
    height: 7px;
}

.price-card-header {
    background: linear-gradient(45deg,
rgba(139,
0,
0,
0.03) 0%,
rgba(139,
0,
0,
0.08) 100%);
    padding: 30px;
    border-bottom: 1px solid rgba(0,
0,
0,
0.05);
    position: relative;
}

.destination-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg,
var(--primary-color),
var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(139,
0,
0,
0.2);
}

.route-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
var(--primary-color),
var(--gold));
    color: white !important;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.175,
0.885,
0.32,
1.275);
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(139,
0,
0,
0.15);
    transform: rotate(-5deg);
}

.price-card:hover .route-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--gold);
}

.route-details {
    position: relative;
}

.route-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.route-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-subtitle i {
    color: var(--primary-color);
    font-size: 1rem;
}

.route-distance {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(139,
0,
0,
0.05);
    border-radius: 20px;
    width: fit-content;
}

.route-distance i {
    font-size: 1rem;
}

.route-price {
    background: linear-gradient(45deg,
var(--primary-color),
var(--primary-dark));
    margin: 0;
    padding: 30px;
    text-align: center;
    color: white;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

.route-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
transparent,
rgba(255,
255,
255,
0.1),
transparent);
    transform: translateX(-100%);
    transition: all 0.6s ease;
}

.price-card:hover .route-price::before {
    transform: translateX(100%);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg,
#fff,
rgba(255,
255,
255,
0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-label {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: rgba(255,
255,
255,
0.9);
}

.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175,
0.885,
0.32,
1.275);
    box-shadow: 0 5px 15px rgba(0,
0,
0,
0.15);
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,
0,
0,
0.2);
    background: var(--gold-light);
    color: var(--primary-color);
}

.book-now-btn i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.book-now-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 991px) {
    .quick-pricing {
    padding: 80px 0;
}

.quick-pricing .section-title h2 {
    font-size: 2.5rem;
}

.quick-pricing .section-title p {
    font-size: 1.1rem;
}

.price-card {
    margin-bottom: 20px;
}

}

@media (max-width: 768px) {
    .quick-pricing .section-title h2 {
    font-size: 2rem;
}

.quick-pricing .section-title p {
    font-size: 1rem;
}

.price-card-header {
    padding: 25px;
}

.route-price {
    padding: 25px;
}

.price-amount {
    font-size: 1.8rem;
}

}

/* Vehicles Section */
.vehicles-section {
    background: linear-gradient(135deg,
#fff 0%,
var(--light-color) 100%);
    padding: 100px 0 120px;
    position: relative;
}

.vehicles-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top left,
#fff 49%,
transparent 51%);
}

.vehicles-slider {
    padding: 20px 10px 60px;
}

.vehicles-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.vehicles-slider .vehicle-card {
    height: 100%;
    margin: 0;
}

.vehicle-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,
0,
0,
0.08);
    transition: all 0.3s ease;
    height: calc(100% - 20px);
    margin: 10px;
    border: 1px solid rgba(0,
0,
0,
0.05);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(139,
0,
0,
0.15);
}

.vehicle-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
transparent 50%,
rgba(0,
0,
0,
0.8));
    z-index: 1;
}

.vehicle-type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(139,
0,
0,
0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.1);
}

.vehicle-details {
    padding: 30px;
}

.vehicle-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: grid;
    grid-template-columns: repeat(2,
1fr);
    gap: 15px;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.vehicle-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,
0,
0,
0.1);
    border-radius: 50%;
}

.vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.vehicles-slider .swiper-button-next,
.vehicles-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
}

.vehicles-slider .swiper-button-next:after,
.vehicles-slider .swiper-button-prev:after {
    font-size: 18px;
}

.vehicles-slider .swiper-button-next:hover,
.vehicles-slider .swiper-button-prev:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.vehicles-slider .swiper-pagination {
    bottom: 20px;
}

.vehicles-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.vehicles-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .vehicles-slider {
    padding: 10px 5px 50px;
    margin: 0 -5px;
}

}

/* Services Section */
.services-section {
    background: linear-gradient(135deg,
var(--light-color) 0%,
#fff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
rgba(125,
25,
53,
0.05) 0%,
transparent 70%);
    border-radius: 50%;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
rgba(212,
175,
55,
0.05) 0%,
transparent 70%);
    border-radius: 50%;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,
0,
0,
0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165,
0.84,
0.44,
1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(125,
25,
53,
0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right,
var(--primary-color),
var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(125,
25,
53,
0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
var(--primary-color),
var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    transform: rotate(-5deg);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--gold);
}

.service-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.4s ease;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 14px;
    position: static;
    transform: none;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
    position: static;
    transform: none;
}

.service-link:hover {
    color: var(--gold);
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .service-card {
    margin-bottom: 30px;
}

}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(rgba(139,
0,
0,
0.9),
rgba(139,
0,
0,
0.9)),
url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957') center/cover;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom right,
white 49%,
transparent 51%);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top left,
white 49%,
transparent 51%);
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,
255,
255,
0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
    background: linear-gradient(45deg,
var(--gold),
var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--light-color);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,
0,
0,
0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    background: white;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13,
110,
253,
0.1);
}

.accordion-body {
    padding: 20px 25px;
    background: white;
    color: var(--secondary-color);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,
0,
0,
0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,
0,
0,
0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 5px solid var(--light-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.testimonial-role {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,
0,
0,
0.7),
rgba(0,
0,
0,
0.7)),
url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957') center/cover;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: var(--gold);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Contact Form Enhancement */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
#fff 0%,
var(--light-color) 100%);
    position: relative;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,
0,
0,
0.05);
    border: 1px solid rgba(139,
0,
0,
0.05);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 70%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    z-index: 1;
}

.form-group textarea ~ i {
    top: 25px;
    transform: none;
}

.contact-form .form-control {
    height: 55px;
    border-radius: 12px;
    border: 2px solid #eef2f7;
    padding: 10px 15px 10px 45px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form textarea.form-control {
    height: 140px;
    padding-top: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139,
0,
0,
0.15);
    background: white;
}

.contact-form label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: block;
}

.contact-info {
    background: linear-gradient(45deg,
var(--primary-dark),
var(--primary-color));
    padding: 40px;
    border-radius: 20px;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
rgba(255,
255,
255,
0.1) 0%,
transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255,
255,
255,
0.3);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255,
255,
255,
0.1);
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255,
255,
255,
0.15);
    transform: translateX(5px);
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,
255,
255,
0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,
255,
255,
0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background: rgba(255,
255,
255,
0.2);
    transform: translateY(-5px);
}

.btn-submit {
    height: 55px;
    padding: 0 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: var(--primary-color);
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .desktop-search-wrapper .container {
    max-width: none;
    width: 100%;
}

.hero-slider,
.slide-img {
    height: 70vh;
}

.slide-title {
    font-size: 2.8rem;
}

.search-box-wrapper {
    position: relative;
    bottom: 0;
    margin-top: -50px;
}

.search-row {
    flex-direction: column;
}

.search-item {
    width: 100%;
}

.btn-search {
    width: 100%;
}

.stat-item::after {
    display: none;
}

.services-section {
    background: white;
}

.vehicle-features {
    grid-template-columns: 1fr;
}

.contact-info {
    margin-top: 30px;
}

}

@media (max-width: 768px) {
    .hero-slider,
.slide-img {
    height: 50vh;
}

.slide-title {
    font-size: 2.2rem;
}

.slide-description {
    font-size: 1rem;
}

.section-title h2 {
    font-size: 2rem;
}

.cta-title {
    font-size: 2.2rem;
}

.feature-card,
.service-card,
.vehicle-card {
    margin-bottom: 30px;
}

}

/* Routes Slider Styles */
.routes-slider {
    padding: 20px 10px 60px;
    margin: 0 -10px;
}

.routes-slider .swiper-slide {
    height: auto;
    padding: 10px;
}

.routes-slider .price-card {
    height: 100%;
    margin: 0;
}

.routes-slider .swiper-button-next,
.routes-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
}

.routes-slider .swiper-button-next:after,
.routes-slider .swiper-button-prev:after {
    font-size: 18px;
}

.routes-slider .swiper-button-next:hover,
.routes-slider .swiper-button-prev:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.routes-slider .swiper-pagination {
    bottom: 20px;
}

.routes-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.routes-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .routes-slider {
    padding: 10px 5px 50px;
    margin: 0 -5px;
}

}

/* Contact Section Social Icons */
.contact-social-links {
    gap: 12px;
}

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,
255,
255,
0.1) !important;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175,
0.885,
0.32,
1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,
255,
255,
0.2);
}

.contact-social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
var(--gold),
var(--gold-light));
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0);
}

.contact-social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--gold);
}

.contact-social-links a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.contact-social-links a:hover i {
    color: var(--primary-dark);
    transform: scale(1.2);
}

.price-card {
    background-color: none !important;
}

/* Autocomplete Dropdown Styles */
.search-input-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,
0,
0,
0.1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f8f9fa;
    color: #007bff;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

/* Input focus styles */
#start_location:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,
123,
255,
0.25);
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .autocomplete-dropdown {
    max-height: 150px;
}

.autocomplete-item {
    padding: 10px 12px;
    font-size: 13px;
}

}