/* Global Anchor Link Styles */
a {
    text-decoration: none;
}

/* Prevent the 'Created by' footer link from changing color on :visited / :active */
.footer-bottom-content a.no-visited,
.footer-bottom-content a.no-visited:link,
.footer-bottom-content a.no-visited:visited,
.footer-bottom-content a.no-visited:hover,
.footer-bottom-content a.no-visited:focus,
.footer-bottom-content a.no-visited:active {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.booking-form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

#booking-form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(30,58,138,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
}
/* --- Vehicle Detail About Car + Image Side by Side --- */
.vehicle-info-card-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
}
.vehicle-info-card-row > .about-car,
.vehicle-info-card-row > .about-car-image {
    flex: 1 1 0;
    min-width: 0;
}
.about-car-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
    .vehicle-info-card-row {
        flex-direction: column;
        gap: 1rem;
    }
    .about-car-image img {
        min-height: 180px;
        height: 180px;
    }
}

/* --- Booking Section Clean Look --- */
.booking-section {
    background: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
}

.booking-section .section-header {
    background: transparent;
    padding: 2rem 0 1.5rem 0;
    margin-bottom: 0;
    text-align: center;
    box-shadow: none;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-section .section-title.white,
.booking-section .section-description.white {
    color: #1e3a8a !important;
    text-shadow: none;
}

.booking-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 70vh;
    margin: 0 auto;
    z-index: 1;
}

#booking-form {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(30,58,138,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

@media (max-width: 600px) {
    .booking-section .section-header {
        padding: 1.2rem 0 1rem 0;
    }
    .booking-form-container {
        min-height: 0;
        padding: 0 0.5rem;
    }
    #booking-form {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
}
/* --- Booking Section Fixes & Centering --- */
.booking-section {
    background: linear-gradient(135deg, #1e3a8a 60%, #f9fafb 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 2rem 0;
}

.booking-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 500px;
}

#booking-form {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(30,58,138,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.section-header .section-title.white,
.section-header .section-description.white {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(30,58,138,0.18);
}

@media (max-width: 600px) {
    .booking-section {
        padding: 1.5rem 0 1rem 0;
    }
    .booking-form-container {
        min-height: 0;
    }
    #booking-form {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
}
/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- Enhanced Mobile Responsiveness --- */
@media (max-width: 600px) {
    .container {
        padding: 0 0.5rem;
    }
    .navbar, .nav-container, .nav-content {
        height: auto;
        min-height: 0;
        padding: 0.5rem 0;
    }
    .nav-content {
        flex-direction: row;
        gap: 0.5rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-menu {
        display: none !important;
    }
    .mobile-menu-button {
        display: block;
    }
    .mobile-menu {
        display: block;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100vw;
        z-index: 1001;
    }
    .hero-section {
        min-height: 70vh;
        padding-top: 3.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-content {
        padding: 0 0.5rem;
    }
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1rem;
    }
    section {
        padding: 2rem 0 1rem 0;
    }
    .about-grid, .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-image img {
        height: 180px;
        border-radius: 0.5rem;
    }
    .fleet-content {
        flex-direction: column;
        gap: 1rem;
    }
    .fleet-filters {
        width: 100%;
        margin-bottom: 1rem;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .fleet-card {
        flex-direction: column;
        min-width: 0;
    }
    .fleet-card-image img {
        width: 100%;
        height: 160px;
        object-fit: cover;
    }
    .vehicle-detail-content {
        flex-direction: column;
        gap: 1rem;
    }
    .vehicle-gallery {
        width: 100%;
        margin-bottom: 1rem;
    }
    .gallery-main {
        height: 180px;
    }
    .vehicle-info {
        width: 100%;
    }
    .booking-section {
        flex-direction: column;
        gap: 1rem;
    }
    .about-car, .booking-section > div {
        width: 100%;
        min-width: 0;
    }
    .about-car h3 {
        font-size: 1.1rem;
    }
    .car-description {
        font-size: 0.95rem;
    }
    .features-list li {
        font-size: 0.95rem;
    }
    .booking-section img {
        min-height: 120px !important;
        height: 120px !important;
        border-radius: 0.5rem;
    }
    .detail-book-section {
        padding: 1rem 0;
    }
    .book-now-btn-detail {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 1rem;
    }
    .footer-bottom-content {
        flex-direction: row;
        gap: 0.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-links, .footer-contact {
        align-items: center;
    }
}

body {
    font-family: 'Century Gothic', 'Futura', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* CSS Variables for theme colors */
:root {
    --deep-blue: #1e3a8a;
    --silver: #9ca3af;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Button styles */
.btn-primary {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-blue);
    cursor: pointer;
    text-decoration: none;
}

.nav-menu {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-blue);
    font-weight: 600;
}

/* Mobile menu */
.mobile-menu-button {
    display: block;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--deep-blue);
    margin-bottom: 3px;
    transition: 0.3s;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.mobile-menu {
    display: none;
    background-color: var(--white);
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: left;
    border: none;
    background: none;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--deep-blue);
    background-color: var(--gray-100);
    font-weight: 600;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/v250-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-hero-primary, .btn-hero-secondary {
    width: 100%;
    max-width: 250px;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background-color: var(--white);
    color: var(--deep-blue);
}

.btn-hero-primary:hover {
    background-color: var(--gray-100);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--deep-blue);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: clamp(0.75rem, 1.5vw, 1rem);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: bold;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title.white {
    color: var(--white);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 32rem;
    margin: 0 auto;
}

.section-description.white {
    color: #e5e7eb;
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    color: var(--deep-blue);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-text {
    color: var(--gray-600);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Fleet Section */
.fleet-section {
    background-color: var(--gray-50);
}

.fleet-carousel-container {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.fleet-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.vehicle-card {
    min-width: 100%;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: none;
}

.vehicle-card.active {
    display: block;
}

.vehicle-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.vehicle-images {
    position: relative;
    height: 100%;
}

.vehicle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vehicle-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--deep-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0.5rem;
}

.carousel-btn.next {
    right: 0.5rem;
}

.vehicle-content {
    padding: 2rem;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.vehicle-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gray-900);
}

.vehicle-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.vehicle-badge.luxury {
    background-color: var(--deep-blue);
}

.vehicle-badge.group-travel {
    background-color: #059669;
}

.vehicle-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vehicle-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.spec-item i {
    color: var(--deep-blue);
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.fleet-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.fleet-nav-btn {
    width: 3rem;
    height: 3rem;
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    color: var(--deep-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.fleet-nav-btn:hover {
    background-color: var(--deep-blue);
    color: var(--white);
    border-color: var(--deep-blue);
}

/* Mobile Swipe Hint */
.swipe-hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: none;
    animation: bounce 1s infinite;
}

.swipe-hint-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.swipe-hint span {
    font-size: 0.75rem;
    font-weight: 500;
}

.swipe-dots {
    display: flex;
    gap: 0.25rem;
}

.dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

.swipe-hint i {
    animation: pulse 2s infinite;
}

/* Services Section */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--deep-blue);
    font-weight: bold;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #4d2d97 100%);
    color: var(--deep-blue);
}

.booking-form-container {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-submit {
    text-align: center;
}

.btn-submit {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--gray-50);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    border: none;
    background: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--deep-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--deep-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.contact-details span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.contact-form {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 1rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--deep-blue);
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--deep-blue);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--gray-400);
}

.footer-bottom-content p {
    margin-bottom: 0;
    margin: 0;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-menu {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .carousel-btn.prev {
        left: 1rem;
    }
    
    .carousel-btn.next {
        right: 1rem;
    }
    
    .swipe-hint {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-background {
        background-attachment: fixed;
    }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    .hero-background {
        background-attachment: scroll;
    }
    
    .swipe-hint {
        display: block;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Modern Navigation Updates */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-blue);
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--deep-blue);
}

.logo-text {
    font-family: 'Century Gothic', sans-serif;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-icon {
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-text {
    font-family: 'Century Gothic', sans-serif;
}

.modern-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--deep-blue), #1d4ed8);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.modern-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, var(--deep-blue));
    transform: translateY(-1px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 1rem;
}

/* Fleet Grid Layout */
.fleet-section {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.fleet-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 0;
    padding-top: 1rem;
}

.fleet-filters {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.filter-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.filter-header {
    background: #3498db;
    color: var(--white);
    padding: 0.75rem 1rem;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
}

.filter-body {
    padding: 1rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-label {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.filter-select {
    width: 100%;
    padding: 0.4rem 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: var(--white);
    color: #333;
    font-size: 0.8rem;
    transition: border-color 0.3s ease;
    height: 32px;
}

.filter-select:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 2px rgba(230, 126, 34, 0.1);
}

.filter-features {
    margin-top: 1rem;
}

.features-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    display: block;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: #333;
}

.checkbox-item input[type="checkbox"] {
    width: 0.9rem;
    height: 0.9rem;
    accent-color: #3498db;
}

.checkbox-item label {
    cursor: pointer;
    font-size: 0.8rem;
    color: #333;
}

.filter-submit-btn {
    width: 100%;
    background: #3498db;
    color: var(--white);
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.filter-submit-btn:hover {
    background-color: #2980b9;
}

.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.filter-submit-btn,
.filter-reset-btn {
    width: 100%;
    color: var(--white);
    padding: 0.6rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
}

.filter-submit-btn {
    background: #3498db;
}

.filter-submit-btn:hover {
    background-color: #2980b9;
}

.filter-reset-btn {
    background: #3498db;
}

.filter-reset-btn:hover {
    background-color: #2980b9;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding-top: 0.5rem;
}

.fleet-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.fleet-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.02);
}

.fleet-card-content {
    padding: 1rem;
}

.fleet-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Century Gothic', sans-serif;
}

.fleet-card-specs {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #666;
}

.spec {
    color: #666;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.spec i {
    color: #3498db;
    font-size: 0.9rem;
    min-width: 1rem;
    text-align: center;
}

.fleet-card-pricing {
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    display: block;
}

.fleet-view-btn {
    width: 100%;
    background: #f8f9fa;
    color: #333;
    padding: 0.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
    font-size: 0.85rem;
}

.fleet-view-btn:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
}

/* Booking Calendar in Fleet Cards */
.booking-calendar {
    margin-bottom: 0.75rem;
}

.calendar-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

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

.input-group label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.2rem;
}

.date-input,
.time-input {
    padding: 0.4rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.75rem;
    background: var(--white);
    color: #333;
}

.date-input:focus,
.time-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

/* Vehicle Detail Page */
.vehicle-detail-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.detail-header {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.back-btn:hover {
    background-color: var(--gray-100);
}

.vehicle-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vehicle-gallery {
    grid-column: span 1;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-main {
    position: relative;
    height: 400px;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-container img.active {
    opacity: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--deep-blue);
    font-size: 1.25rem;
}

.gallery-nav:hover {
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery-dot.active {
    background: var(--deep-blue);
}

.vehicle-info {
    grid-column: span 2;
}

.vehicle-info-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.vehicle-name {
    font-size: 2rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-family: 'Century Gothic', sans-serif;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.spec-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.spec-label {
    font-weight: 500;
    color: var(--gray-600);
}

.spec-value {
    font-weight: 600;
    color: var(--deep-blue);
}

/*
.booking-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
*/

.booking-time,
.about-car {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.booking-time h3,
.about-car h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    font-family: 'Century Gothic', sans-serif;
}

.time-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.time-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.time-input-group label {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.date-input,
.time-input {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    background: var(--white);
    color: var(--gray-700);
    transition: border-color 0.3s ease;
}

.date-input:focus,
.time-input:focus {
    outline: none;
    border-color: var(--deep-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.car-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.car-features h4 {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-600);
}

.features-list i {
    color: var(--deep-blue);
    font-size: 0.875rem;
}

.booking-sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}

.ready-for-journey-section {
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 2px solid var(--gray-200);
    border-bottom: 2px solid var(--gray-200);
}

.ready-for-journey-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin: 0;
    font-family: 'Century Gothic', sans-serif;
}

.detail-book-section {
    text-align: center;
    padding: 2rem 0;
    border-top: 2px solid var(--gray-200);
    margin-top: 2rem;
}

.book-now-btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--deep-blue);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.book-now-btn-detail:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.booking-info {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.booking-header {
    background: var(--deep-blue);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.booking-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Century Gothic', sans-serif;
}

.booking-calendar-detail {
    padding: 1.5rem;
}

.calendar-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.calendar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calendar-section h4 {
    color: var(--deep-blue);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.full-width {
    grid-column: 1 / -1;
}

.text-input,
.select-input {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: var(--white);
    color: #333;
    width: 100%;
}

.text-input:focus,
.select-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}


.book-now-btn {
    width: 100%;
    background: var(--deep-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.book-now-btn:hover {
    background-color: #1d4ed8;
}

.booking-note {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    color: var(--gray-600);
    font-size: 0.875rem;
    line-height: 1.4;
}

.booking-note i {
    color: var(--deep-blue);
    margin-right: 0.5rem;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .fleet-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fleet-filters {
        position: static;
    }
    
    .vehicle-detail-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicle-gallery {
        grid-column: span 1;
    }
    
    .vehicle-info {
        grid-column: span 1;
    }
    
    .booking-section {
        grid-template-columns: 1fr;
    }
    
    .time-selection {
        grid-template-columns: 1fr;
    }
    
    .vehicle-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-link .nav-icon,
    .nav-link .nav-text {
        font-size: 0.875rem;
    }
    
    .modern-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .vehicle-name {
        font-size: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1rem;
    }
}