:root {
    --primary-color: #1a56db;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    padding-top: 0;
}
.primary-button {
    color: white;
    font-weight: 300;
    background-color: #0c52a6;
    padding: 3px 3px;
    border-radius: 5px;
    transition: background-color 0.4s;
    height: 45px;
    text-align: center;

}
.primary-button:hover {
    color: white;
    background-color: #093a77;
    transition: background-color 0.3s ease-in-out;
}
.secondary-button {
    color: #0c52a6;
    font-weight: 300;
    background-color: white;
    padding: 3px 3px;
    border-radius: 5px;
    transition: background-color 0.4s;
    height: 45px;
    text-align: center;
    border: 1px solid;
    border-color: #0c52a6;
}
.secondary-button:hover {
    color: white;
    background-color: #0c52a6;
    transition: background-color 0.3s ease-in-out;
}

/* Navigation */
.nav-links a {
    transition: color 0.3s ease;
}

.mobile-menu {
    transition: all 0.3s ease;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease;
    background: white;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Fleet Cards */
.fleet-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.fleet-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    padding: 0.75rem;
    height: 220px;
}

.fleet-image {
    width: auto;
    height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.fleet-image:hover {
    transform: scale(1.05);
}

.fleet-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #0b488e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.fleet-content {
    padding: 1.5rem;
    background-color: white;
}

.fleet-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.fleet-specs-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fleet-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.fleet-spec-row:last-child {
    border-bottom: none;
}

.fleet-spec-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fleet-spec-icon {
    color: #0b488e;
}

/* Category Navigation */
.fleet-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.fleet-category-btn {
    color: #0c52a6;
    padding: 0.5rem 1.5rem;
    border: 2px solid #0c52a6;
    border-radius: 0.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fleet-category-btn:hover {
    background-color: #093a77;
    color: white;
}

.fleet-category-btn.active {
    background-color: #0c52a6;
    color: white;
}

/* Fleet Grid Layout */
.fleet-grid {
    display: grid;
    gap: 2rem;
    padding: 0 1rem;
}

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

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

/* Contact Form */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    ring: 2px solid var(--primary-color);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        padding: 0.5rem 0;
    }
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4rem;
    /* 32px */
    padding-right: 4rem;
    /* 32px */
    /* max-width: 1280px;    */
}

/* Responsive padding adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        /* 16px for mobile */
        padding-right: 1rem;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Header Styles */
.main-header {
    /* background-color: white; */
    background: transparent;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    width: 100%;
    z-index: 10;
    padding: 0 0rem;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-image {
    height: 3.5rem;
}

.desktop-nav {
    display: none;
    gap: 0.75rem;
    align-items: center;
    z-index: 10;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #d9d9d9;
    font-weight: 550;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: white;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    z-index: 1000;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #2563eb;
    padding-left: 2rem;
}

.highlight {
    color: white !important;
    background-color: #0c52a6;
    padding: 0.75rem 1.25rem;
    margin: 0 0.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.highlight:hover {
    background-color: #093a77;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.mobile-menu {
    display: block;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: white;
}

.mobile-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 0.5rem 0;
}

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

.mobile-nav-link {
    display: block;
    padding: 0.75rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.mobile-nav-link:hover {
    color: #2563eb;
}

/* Media Queries */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu-container {
        display: none;
    }
}

/* Animation for dropdown items */
.dropdown-menu .dropdown-link {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu .dropdown-link {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for dropdown items */
.dropdown-menu .dropdown-link:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown-menu .dropdown-link:nth-child(2) {
    transition-delay: 0.15s;
}

.dropdown-menu .dropdown-link:nth-child(3) {
    transition-delay: 0.2s;
}

.dropdown-menu .dropdown-link:nth-child(4) {
    transition-delay: 0.25s;
}

/* Top Header Styles */
.top-header {
    /* background-color: #f8f9fa; */
    background: transparent;
    padding: 0.75rem 0rem;
    /* border-bottom: 1px solid #e5e7eb; */
    width: 100%;
    z-index: 1001;
}

.top-header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 3.5rem;
    width: auto;
}

/* Contact Section */
.contact-section {
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 10;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp {
    background-color: #25D366;
    color: white;
    margin-right: 0.5rem;
}

.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Phone Button */
.phone {
    background-color: #0c52a6;
    color: white;
}

.phone:hover {
    background-color: #093a77;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        gap: 0.5rem;
    }

    .contact-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .contact-button span {
        display: none;
        /* Hide text on mobile, show only icons */
    }

    .contact-button i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .top-header .container {
        padding: 0 1rem;
    }

    .logo-image {
        height: 2.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-header {
        position: relative;
    }

    body {
        padding-top: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 0.5rem;
        font-size: 0.8rem;
    }
}

.fleet-link {
    color: #0c52a6;
    font-size: 1rem;
    padding: 1px 3px;
    text-align: center;
    transition: all 0.3s ease;
}

.fleet-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
}

.testimonial-content {
    padding: 2rem;
    min-height: 300px;
    /* Increased height for more content */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dot.active {
    background-color: #2563eb;
}

.pattern-dots {
    background-image: radial-gradient(#2563eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.step-content {
    display: none;
}

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

.bg-gradient-to-r {
    background: linear-gradient(to right, #1e3a8a, #6b21a8);
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(to bottom, #111827, #072f5f);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMCAwaDYwdjYwSDB6IiBmaWxsPSJub25lIi8+PGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMSIgZmlsbD0iI2ZmZiIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    opacity: 0.25;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 3rem;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #2563EB;
}

/* Services Section */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.icon-arrow {
    font-size: 0.875rem;
    color: #60A5FA;
}

/* Contact Section */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-text,
.contact-link {
    color: #9CA3AF;
}

.contact-link:hover {
    color: white;
}

/* Business Hours */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #9CA3AF;
}

.hours-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    color: #9CA3AF;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-link {
    color: #9CA3AF;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.bottom-link:hover {
    color: white;
}

/* Contact Cards Hover Effect */
.contact-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Icon Container Animation */
.contact-icon-container {
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-container {
    transform: scale(1.1);
}

/* Fleet Page Styles */
.fleet-category-btn {
    @apply px-6 py-2 rounded-full font-semibold transition-colors;
    /* background-color: #1a1a1a;
    color: white; */
}

.fleet-category-btn.active {
    @apply bg-red-600;
}

.fleet-category-btn:hover {
    @apply bg-red-600;
}

.fleet-card {
    @apply bg-white rounded-lg shadow-lg overflow-hidden hover:shadow-xl transition-shadow duration-300;
}

/* Add hover effect for fleet cards */
.fleet-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Add hover effect for fleet cards */
.fleet-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Existing styles remain... */

/* FAQ Section Styles */
.faq-content {
    transition: all 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}

.faq-content.show {
    max-height: 500px;
}

/* Icon Rotation */
.rotate-180 {
    transform: rotate(180deg);
}

/* Transition for the chevron icon */
.fa-chevron-down {
    transition: transform 0.3s ease;
}

/* Glass morphism effect for FAQ cards */
.bg-white\/95 {
    background-color: rgba(255, 255, 255, 0.95);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Additional FAQ Styles */
.faq-button {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4B5563;
    line-height: 1.6;
}

/* FAQ Card Hover Effects */
.faq-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section Background */
.faq-section {
    background: linear-gradient(to bottom right, #072f5f, #1a4980);
    position: relative;
    overflow: hidden;
}

/* FAQ Pattern Overlay */
.faq-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

/* FAQ Typography */
.faq-title {
    color: white;
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #D1D5DB;
    text-align: center;
    margin-bottom: 3rem;
}

/* FAQ Container */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* FAQ Item Spacing */
.faq-item {
    margin-bottom: 1rem;
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* FAQ Content Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content.show {
    animation: slideDown 0.3s ease-out forwards;
}

/* FAQ Question Hover State */
.faq-question {
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

/* FAQ Icon Container */
.faq-icon-container {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FAQ Divider */
.faq-divider {
    height: 1px;
    background-color: #E5E7EB;
    margin: 0.5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 0.5rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-button {
        padding: 1rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Vehicle Card Styles */
.vehicle-card {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    width: 260px;
    height: 320px;
    transition: box-shadow 0.3s ease;
}

.vehicle-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.vehicle-card-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vehicle-image-container {
    background-color: #f3f4f6;
    overflow: hidden;
    padding: 0.5rem;
    height: 130px;
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-details {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.vehicle-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #4b5563;
}

.vehicle-spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.vehicle-button-container {
    margin-top: 1rem;
}