/* Root Variables */
:root {
    --primary-red: #c82333;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar-custom {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light) !important;
}

.navbar-brand span {
    color: var(--primary-red);
}

.nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light) !important;
}

/* Buttons */
.btn-red {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-red:hover {
    background: #a01d2a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 35, 51, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-content {
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Reservation Card */
.reservation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.reservation-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.reservation-card .form-control,
.reservation-card .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.reservation-card .form-control:focus,
.reservation-card .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(200, 35, 51, 0.25);
    color: var(--text-light);
}

.reservation-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.reservation-card .form-select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.reservation-card textarea.form-control {
    resize: vertical;
}

/* Form Sections */
.form-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section .section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
}

.reservation-card .form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.reservation-card .form-check-label {
    font-size: 0.9rem;
}

.reservation-card .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.reservation-card .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}


/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Service Cards */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 35, 51, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: rgba(200, 35, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-red);
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-content p {
    color: var(--text-gray);
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-red), #a01d2a);
    padding: 4rem 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Destinations */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.destination-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5), transparent);
    padding: 2rem;
}

.destination-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.destination-price {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Transfer Cards - Modern Design */
.transfer-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.transfer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 50px rgba(200, 35, 51, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.transfer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 35, 51, 0.2), rgba(200, 35, 51, 0.05));
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.transfer-card:hover .transfer-icon {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.transfer-route {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.route-from,
.route-to {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
}

.route-from {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.transfer-route i {
    font-size: 1.5rem;
}

.transfer-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.detail-item i {
    color: var(--primary-red);
    font-size: 1.3rem;
}

.detail-item span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.transfer-card .btn-red {
    margin-top: auto;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
}

/* Transfer Simple Cards - Compact Design */
.transfer-simple-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    height: 100%;
}

.transfer-simple-card:hover {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.transfer-route-simple {
    margin-bottom: 0.75rem;
    text-align: center;
}

.route-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.route-text i {
    font-size: 0.9rem;
}

.transfer-info-simple {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.info-item i {
    color: var(--primary-red);
    font-size: 0.9rem;
}


/* Footer */
footer {
    background: #050505;
    padding: 5rem 0 0;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0 0;
    margin-top: 4rem;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Vehicle Fleet Styles */
.vehicle-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-red);
}

.vehicle-img-wrapper {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.vehicle-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.vehicle-type {
    display: inline-block;
    background: rgba(200, 35, 51, 0.1);
    color: var(--primary-red);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.vehicle-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vehicle-features li {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.vehicle-features li i {
    color: var(--primary-red);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

/* Page Header for Subpages */
.hero-page {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/slider-scenic.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 4rem;
    margin-bottom: 0;
}

/* Blog Styles */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-red);
}

.blog-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--primary-red);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-red);
}

.blog-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: auto;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.page-link {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    margin: 0 5px;
    border-radius: 8px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
}

.page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: rgba(255, 255, 255, 0.3);
}

/* Blog Detail Styles */
.blog-single {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.blog-single-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.blog-single-img img {
    width: 100%;
    height: auto;
}

.blog-single-img .blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-single-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
}

.blog-content {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content strong {
    color: var(--text-light);
}

.blockquote {
    background: rgba(255, 255, 255, 0.03);
    font-style: italic;
    color: var(--text-light);
}

.tag-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-right: 5px;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-red);
    color: white;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.blog-navigation a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-navigation a:hover {
    color: var(--primary-red);
}

/* Sidebar Styles */
.sidebar-widget {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.search-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

.search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-red);
    box-shadow: none;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.category-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.category-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-list a {
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.category-list span {
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h5 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h5 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h5 a:hover {
    color: var(--primary-red);
}

.recent-post-content .date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
        margin-bottom: 1.5rem;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
    }

    .hero-content .btn {
        font-size: 0.9rem;
        padding: 0.65rem 1.5rem;
    }

    .reservation-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .reservation-card h3 {
        font-size: 1.2rem;
    }

    .hero-slider,
    .carousel-item {
        height: auto;
        min-height: 100vh;
    }

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

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
    }

    .hero-content .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .hero-content .btn {
        width: 100%;
        font-size: 0.85rem;
    }

    .reservation-card {
        padding: 1.25rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    background: var(--darker-bg);
    /* Match footer color to hide bottom gaps */
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

/* Language Switcher */
.language-dropdown {
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    margin-top: 0.5rem;
}

.language-dropdown .dropdown-item {
    padding: 0.7rem 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(200, 35, 51, 0.1);
    color: var(--text-light);
}

.language-dropdown .dropdown-item.active {
    background: rgba(200, 35, 51, 0.2);
    color: var(--primary-red);
    font-weight: 600;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#languageDropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    font-weight: 500;
}

#languageDropdown i {
    font-size: 1.1rem;
}

#languageDropdown:hover {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 35, 51, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.quote-icon-wrapper {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary-red);
    opacity: 0.1;
    line-height: 1;
    font-family: serif;
    pointer-events: none;
    transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.client-img-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(200, 35, 51, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.client-icon {
    font-size: 3rem;
    color: var(--text-gray);
    line-height: 1;
}

.client-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    letter-spacing: 0.5px;
}

.client-location {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.2rem;
}

.stars i {
    font-size: 0.8rem;
    margin-right: 2px;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.5rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.9;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--text-gray);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-red);
    opacity: 1;
    width: 12px;
    height: 12px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-red);
    color: white;
}

/* Ensure equal height slides */
.swiper-slide {
    height: auto;
}

/* FAQ Accordion Styles */
.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    color: var(--text-gray);
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: var(--text-light);
    font-weight: 500;
    box-shadow: none !important;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(200, 35, 51, 0.1);
    color: var(--primary-red);
}

.accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c82333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    margin-bottom: 0;
}

.faq-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--primary-red);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .faq-icon-wrapper {
    background: var(--primary-red);
    color: white;
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20bd5a;
    color: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}