
        :root {
            --primary: #ffc107;
            --primary-light: #fff8e1;
            --primary-dark: #ffa000;
            --secondary: #1e5631;
            --secondary-light: #2e7d32;
            --secondary-dark: #0d2614;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
            --text: #212529;
            --text-light: #6c757d;
            --background: #ffffff;
            --card-bg: rgba(255, 255, 255, 0.9);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --card-border: 1px solid rgba(255, 255, 255, 0.18);
            --nav-bg: rgba(255, 255, 255, 0.95);
            --transition: all 0.3s ease;
            --border-radius: 12px;
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .dark-mode {
            --primary: #ffc107;
            --primary-light: #4d3b00;
            --primary-dark: #ffca28;
            --secondary: #2e7d32;
            --secondary-light: #4caf50;
            --secondary-dark: #1b5e20;
            --gray-100: #2d3236;
            --gray-200: #343a40;
            --gray-300: #495057;
            --gray-400: #6c757d;
            --gray-500: #adb5bd;
            --gray-600: #ced4da;
            --gray-700: #dee2e6;
            --gray-800: #e9ecef;
            --gray-900: #f8f9fa;
            --text: #f8f9fa;
            --text-light: #e9ecef;
            --background: #121212;
            --card-bg: rgba(45, 45, 45, 0.8);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --card-border: 1px solid rgba(255, 255, 255, 0.08);
            --nav-bg: rgba(18, 18, 18, 0.95);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--background);
            line-height: 1.6;
            transition: var(--transition);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--text);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 2rem;
        }

        h4 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary-light);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        button, .btn {
            cursor: pointer;
            display: inline-block;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            user-select: none;
            border: 2px solid transparent;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: var(--border-radius);
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: var(--gray-900);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: white;
            border-color: var(--secondary);
        }

        .btn-secondary:hover {
            background-color: var(--secondary-dark);
            border-color: var(--secondary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text);
            border-color: var(--gray-400);
        }

        .btn-outline:hover {
            background-color: var(--gray-200);
            border-color: var(--gray-500);
            transform: translateY(-3px);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.25rem;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

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

        .mb-1 {
            margin-bottom: 0.5rem;
        }

        .mb-2 {
            margin-bottom: 1rem;
        }

        .mb-3 {
            margin-bottom: 1.5rem;
        }

        .mb-4 {
            margin-bottom: 2rem;
        }

        .mb-5 {
            margin-bottom: 3rem;
        }

        .mt-1 {
            margin-top: 0.5rem;
        }

        .mt-2 {
            margin-top: 1rem;
        }

        .mt-3 {
            margin-top: 1.5rem;
        }

        .mt-4 {
            margin-top: 2rem;
        }

        .mt-5 {
            margin-top: 3rem;
        }

        .py-1 {
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .py-2 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        .py-3 {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        .py-4 {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }

        .py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }

        .px-1 {
            padding-left: 0.5rem;
            padding-right: 0.5rem;
        }

        .px-2 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-3 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .px-4 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .px-5 {
            padding-left: 3rem;
            padding-right: 3rem;
        }

        /* Grid System */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }

        .col {
            flex: 1 0 0%;
            padding-right: 15px;
            padding-left: 15px;
        }

        .col-12 {
            flex: 0 0 100%;
            max-width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-8, .col-lg-9 {
            flex: 0 0 100%;
            max-width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }

        @media (min-width: 768px) {
            .col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (min-width: 992px) {
            .col-lg-3 {
                flex: 0 0 25%;
                max-width: 25%;
            }
            .col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
            .col-lg-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            .col-lg-8 {
                flex: 0 0 66.666667%;
                max-width: 66.666667%;
            }
            .col-lg-9 {
                flex: 0 0 75%;
                max-width: 75%;
            }
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--nav-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Merriweather', serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--text);
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 1.5rem;
        }

        .nav-links a {
            color: var(--text);
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            align-items: center;
        }

        .nav-buttons .btn {
            margin-left: 1rem;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text);
            padding: 0.5rem;
        }

        .mode-toggle {
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 1rem;
            font-size: 1.25rem;
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .mode-toggle:hover {
            background-color: var(--gray-200);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 1rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 10;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.5rem 1.5rem;
            color: var(--text);
        }

        .dropdown-menu a:hover {
            background-color: var(--gray-200);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
        }

        .hero-swiper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-slide {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            color: white;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .hero-overlay {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hero-overlay-title {
            font-size: 1.5rem;
            margin-bottom: 0;
            color: white;
        }

        .hero-overlay-subtitle {
            color: var(--primary);
            margin-bottom: 0;
        }

        /* Search Form */
        .search-form-container {
            position: relative;
            margin-top: -70px;
            z-index: 10;
            margin-bottom: 3rem;
        }

        .search-form {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 2rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
        }

        .search-form-title {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            line-height: 1.5;
            color: var(--text);
            background-color: var(--background);
            border: 1px solid var(--gray-300);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
        }

        .search-btn {
            width: 100%;
            padding: 0.75rem 1.5rem;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -10px;
            margin-left: -10px;
        }

        .form-col {
            flex: 1 0 100%;
            padding-right: 10px;
            padding-left: 10px;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .form-col {
                flex: 0 0 50%;
                max-width: 50%;
            }
        }

        @media (min-width: 992px) {
            .form-col {
                flex: 1 0 0%;
                margin-bottom: 0;
            }
        }

        /* Fleet Section */
        .fleet-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid var(--gray-300);
            padding-bottom: 1rem;
        }

        .fleet-tab {
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .fleet-tab::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .fleet-tab.active {
            color: var(--text);
        }

        .fleet-tab.active::after {
            width: 100%;
        }

        .fleet-tab:hover {
            color: var(--text);
        }

        .fleet-content {
            display: none;
        }

        .fleet-content.active {
            display: block;
        }

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

        @media (min-width: 768px) {
            .fleet-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .fleet-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .car-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .car-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

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

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

        .car-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--primary);
            color: var(--gray-900);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
        }

        .car-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .car-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .car-rating {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .car-rating span {
            margin-left: 0.5rem;
            color: var(--text-light);
            font-size: 0.875rem;
        }

        .car-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .car-feature {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .car-feature i {
            margin-right: 0.5rem;
            color: var(--primary);
            font-size: 1rem;
        }

        .car-price {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-300);
        }

        .price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
        }

        .price-period {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .car-btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        /* How It Works Section */
        .how-it-works {
            background-color: var(--gray-100);
            position: relative;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://picsum.photos/id/1033/1200/800');
            background-size: cover;
            background-position: center;
            opacity: 0.05;
            z-index: 0;
        }

        .step-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            text-align: center;
            box-shadow: var(--card-shadow);
            position: relative;
            z-index: 1;
            height: 100%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            font-size: 1.5rem;
            font-weight: 700;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .step-number::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px dashed var(--primary);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .step-title {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--background);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: var(--primary-light);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: var(--secondary-light);
            opacity: 0.1;
            z-index: 0;
        }

        .testimonial-swiper {
            width: 100%;
            padding-bottom: 4rem;
        }

        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--card-shadow);
            position: relative;
            z-index: 1;
            height: 100%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--primary);
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            opacity: 0.2;
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

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

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 3px solid var(--primary);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 0.25rem;
            font-size: 1.125rem;
        }

        .author-info p {
            margin-bottom: 0;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* Contact Section */
        .contact {
            position: relative;
        }

        .contact-info {
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-light);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            margin-bottom: 0.25rem;
            font-size: 1.125rem;
        }

        .contact-text p {
            margin-bottom: 0;
            color: var(--text-light);
        }

        .contact-form {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--card-shadow);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: var(--card-border);
        }

        .map-container {
            height: 400px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }

        /* Newsletter Section */
        .newsletter {
            background-color: var(--primary);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://picsum.photos/id/1072/1200/800');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .newsletter-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter-title {
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .newsletter-subtitle {
            color: var(--gray-800);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            max-width: 600px;
            margin: 0 auto;
            gap: 1rem;
        }

        .newsletter-input {
            flex: 1 0 250px;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .newsletter-btn {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            background-color: var(--gray-900);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            flex: 0 0 auto;
        }

        .newsletter-btn:hover {
            background-color: var(--gray-800);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

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

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-text {
            color: var(--gray-400);
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            margin-bottom: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 0.75rem;
            transition: var(--transition);
        }

        .social-link:hover {
            background-color: var(--primary);
            color: var(--gray-900);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

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

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

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

        .footer-links a {
            color: var(--gray-400);
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 0.5rem;
            font-size: 0.75rem;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

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

        .footer-contact li {
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact li i {
            margin-right: 1rem;
            color: var(--primary);
            margin-top: 5px;
        }

        .footer-contact li span {
            color: var(--gray-400);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--gray-500);
            margin-bottom: 0;
        }

        .footer-bottom a {
            color: var(--primary);
        }

        /* Booking Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1100;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background-color: var(--background);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: translateY(-50px);
            transition: var(--transition);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .modal-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-300);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-title {
            font-size: 1.5rem;
            margin-bottom: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-light);
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--text);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .modal-footer {
            padding: 1.5rem;
            border-top: 1px solid var(--gray-300);
            display: flex;
            justify-content: flex-end;
        }

        .modal-footer .btn {
            margin-left: 1rem;
        }

        /* Booking Steps */
        .booking-steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2rem;
            position: relative;
        }

        .booking-steps::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--gray-300);
            z-index: 0;
        }

        .booking-step {
            position: relative;
            z-index: 1;
            text-align: center;
            flex: 1;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            background-color: var(--gray-300);
            color: var(--text-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.25rem;
            position: relative;
            transition: var(--transition);
        }

        .booking-step.active .step-icon {
            background-color: var(--primary);
            color: var(--gray-900);
        }

        .booking-step.completed .step-icon {
            background-color: var(--secondary);
            color: white;
        }

        .step-label {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
        }

        .booking-step.active .step-label {
            color: var(--text);
            font-weight: 600;
        }

        .booking-step-content {
            display: none;
        }

        .booking-step-content.active {
            display: block;
        }

        /* Car Details */
        .car-details {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .car-details-image {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 1.5rem;
        }

        .car-details-info {
            flex: 0 0 100%;
            max-width: 100%;
        }

        @media (min-width: 768px) {
            .car-details-image {
                flex: 0 0 40%;
                max-width: 40%;
                margin-bottom: 0;
                padding-right: 1.5rem;
            }
            .car-details-info {
                flex: 0 0 60%;
                max-width: 60%;
            }
        }

        .car-details-image img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }

        .car-details-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

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

        .car-spec {
            display: flex;
            align-items: center;
        }

        .car-spec i {
            margin-right: 0.5rem;
            color: var(--primary);
            font-size: 1rem;
        }

        .car-price-details {
            background-color: var(--gray-100);
            border-radius: var(--border-radius);
            padding: 1rem;
            margin-bottom: 1.5rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .price-row.total {
            font-weight: 700;
            border-top: 1px solid var(--gray-300);
            padding-top: 0.5rem;
            margin-top: 0.5rem;
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--background);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                transition: var(--transition);
                z-index: 900;
                overflow-y: auto;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                max-width: 300px;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                padding: 0.5rem 0;
                margin-top: 0.5rem;
                display: none;
            }

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

            .hamburger {
                display: block;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input,
            .newsletter-btn {
                width: 100%;
            }
        }

        @media (max-width: 767px) {
            .section {
                padding: 3rem 0;
            }

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

            .hero {
                min-height: 500px;
            }

            .hero-title {
                font-size: 2rem;
            }

            .search-form-container {
                margin-top: -50px;
            }

            .fleet-tab {
                padding: 0.5rem 1rem;
                font-size: 0.875rem;
            }

            .car-details {
                flex-direction: column;
            }

            .car-details-image,
            .car-details-info {
                flex: 0 0 100%;
                max-width: 100%;
                padding-right: 0;
            }

            .car-details-image {
                margin-bottom: 1.5rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.5s ease forwards;
        }

        /* Loading Spinner */
        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid rgba(255, 193, 7, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
            margin: 2rem auto;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--gray-900);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            cursor: pointer;
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 900;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Floating Call Button (mobile only) */
        .call-btn {
            display: none;
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 900;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .call-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 767px) {
            .call-btn {
                display: flex;
            }
            .scroll-top {
                bottom: 7rem;
            }
            .whatsapp-btn {
                bottom: 7rem;
                left: 1rem;
            }
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--background);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

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

        .preloader-logo {
            width: 100px;
            margin-bottom: 1rem;
        }

        .preloader-spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 193, 7, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        /* Background Noise Texture */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAABNJJREFUaEPtmttTE1ccx7/n7CYhF0IgkHAJCCQqRbBeqFWrVUet1dFOO+10+tI/oH+Cj33tm9MXO9NOpzpVp1ptxwt2FBQFQQFBkXtCQsiFXDbJnnZDgECym5CwJH3w7EPYc36/z/l9f+d3zgbhJ3rQT4SB/w+kXFVyZfFzNuRKIXKOK4rIFcdcUeQMnHMgZ0rO8MnFnDMgZ8P83BNJN2bOiKQbSLqxcw4kXSBcxs8ZEFcDuYLhMk7OgLgaiMv4WQdyJphrGFkHcjUQlzCyDuRqIC5hZB3I1UBcwsgqkDPBXMfIKpCrgbiAkVUgVwNxAeOnA+JMsHTGyQqQs0DSGScrQM4CSXecrAA5CyTdcbIO5AhIOuJkHcgRkHTEyTqQIyDpiPPTALEHlok4GQeyByQTcTIORNI0aIaBKR43ggCeNJB0xMkYEEPTMOr1eN7TgxGvFzRNgwYQD8PiigpUFRZGgaQaJ2NAnt+9i/7xcTC6DkEQwLIsMpkMXoyPo6ehAecbGqJAUomTESBj09Po7u8HwzAQRRGCIECWZSiKAo7j0HvnDi7v3x8DkkqctIM8uXkTgzdvguM4sKwGQRAgiiJkWYYsy9Dr9WhtbcXlnTtjQFKFk3aQO5cuoePqVRQWFkKvZ6HXM2AYBjRNg2VZGAwG1NfXo+/aNRQVFcWApAInrSCPLl/G2PXryM/Ph8FgAE3ToCgKNE1DVVUoigKapvHZoUO4c+UKOI6LAUkWJ60gj1tb8eLCBRQUFIBlaRAEAZIkQRRFKIoCURQhyzJKS0vRfOECHrW2xoEkg5M2kEdXrmDswgXk5+eD4ziQJAlZlqEoClRVBUmSUBQFiqKgqakJjy9fjgNJBidtIA9bWzF+/jzy8vLAsiwIgoCqqiAIAoqigCRJqKoKiqLQ1NSExy0tcSB2cdIG0tfSgpetrcjLywPHcaBpGhRFgaIo6HQ6UBQFRVHA8zx27dqFvpaWOBB7OGkB6b1wAWOtrTA8fQoAIAgCJEmCIEkQJAkAYDQasWPHDvReuhQHYgsnLSCPzp3DRGsrjIIAnU4HmqahqipUVQXDMJAkCTzPY9u2bXh07lwciC2ctICMnD2LyZYW5AkCdDodGIYBwzAgCAKKokCSJAiCgMLCQgyfPRsHYgvHbSB9Z87g9fnzyBME6PV66HQ6MAyD8JMkSciyjMLCQvSdORMHYgvHbSB9p09j6vx55AkC9Ho9KIoCQRDQNA2SJEGWZSiKAp7n0Xf6dByILRy3gQycOoXplhbkCQJ0Oh0oigJJkiAIAqqqQlEUkCQJnufRf+pUHIgtHLeBDJ48iZmWFuQJAnQ6HSiKAkEQIAgCmqZBURQQBAGe5zFw8mQciC0ct4EMnTiBNy0tMAgCdDodKIoCQRAgCAKapkFVVZAkCZ7nMXjiRByILRy3gQwfP47ZlhYYBAE6nQ4kSYIgCJAkCUEQoCgKJElCFEUMHT8eB2ILx20gI8eOYfb8eRgEATqdDiRJgiAIkCQJURRBkiRIkoQoihg+diwOxBaO20BGjx7F7Llz4AUBer0eJEmCJEmQJAmSJIEkSZAkCVEUMXL0aByILRy3gYwdOYLZc+fACwL0ej1IkgRJkpAkCZIkgSRJkCQJURQxduRIHIgtHLeBjB8+jNlz58ALAvR6PUiSBEmSIEkSJEkCSZIgSRKiKGL88OE4EFs4bgOZOHQIs+fOgRcE6PV6kCQJkiRBkiRIkgRJkiBJEqIoYuLQoTgQWzj/AuhzcgKKfIJwAAAAAElFTkSuQmCC');
            opacity: 0.02;
            z-index: -1;
            pointer-events: none;
        }
