:root {
    --primary-color: #191919;
    --secondary-color: #666;
    --accent-color: #c5a47e;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
}

/* Update the header styles */
header {
    background: linear-gradient(rgba(25, 25, 25), rgba(0, 0, 0, 0.6)), url('https://cdn.pixabay.com/photo/2021/11/01/21/20/car-6761801_1280.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    color: white;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 0 20px;
}

/* Add responsive styles for mobile menu */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

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

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
}
header h1 {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-logos {
    padding: 40px 20px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

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

.car-collection {
    
    background-color: #f8f9fa;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.car-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.car-card h3 {
    margin: 16px 0;
    font-size: 18px;
    color: #1a1a1a;
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #666;
}

.car-specs span img {
    width: 16px;
    height: 16px;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.price {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
}

.price span {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.rent-now {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid #1a1a1a;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rent-now:hover {
    background: #1a1a1a;
    color: white;
}

.see-all-btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 24px;
    border-radius: 24px;
    background: #1a1a1a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: #333;
}

@media (max-width: 1024px) {
    .car-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: 1fr;
    }
}
.car-collection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-buttons button {
    padding: 10px 25px;
    border: none;
    background: white;
    cursor: pointer;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.filter-buttons button.active {
    background-color: var(--accent-color);
    color: white;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
}

.car-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card h3 {
    padding: 15px 20px;
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px 20px;
    border-top: 1px solid #eee;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item .icon {
    font-size: 1.2rem;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price .amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
}

.price .period {
    color: var(--secondary-color);
}

.rent-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.rent-btn:hover {
    background: #0056b3;
}

.view-all-btn {
    display: block;
    margin: 40px auto 0;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .car-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-buttons button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}
.filter-buttons button.active {
    background-color: var(--accent-color);
    color: white;
    border-radius: 20px;
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.car-card {
    background: var(--card-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.car-card h3 {
    padding: 15px;
}

.car-specs {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid #eee;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
}

.car-price button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
}

.how-it-works {
    padding: 80px 20px;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: #1A1A1A;
}

.how-it-works .description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}

.steps-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.steps-content {
    flex: 1;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: #F8F9FA;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: #1A1A1A;
}

.step-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #1A1A1A;
}

.step-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.steps-image {
    flex: 1;
    position: relative;
}

.steps-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
    }

    .steps-image {
        order: -1;
        margin-bottom: 40px;
    }

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

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 20px;
    }

    .how-it-works h2 {
        font-size: 2rem;
    }

    .step {
        padding: 20px;
    }
}

.testimonials {
    padding: 80px 20px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1A1A1A;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    padding: 0 40px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1A1A1A;
    margin-bottom: 40px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.customer-details h4 {
    font-size: 1.2rem;
    margin: 0 0 4px;
    color: #1A1A1A;
}

.customer-details p {
    margin: 0;
    color: #666;
}

.testimonial-controls {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 0;
    right: 0;
}

.prev-btn,
.next-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: #1A1A1A;
    border-color: #1A1A1A;
    color: #fff;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-controls {
        position: static;
        justify-content: center;
        margin-top: 30px;
    }
}
footer {
    background: #000;
    padding: 40px 20px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.footer-nav nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #666;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #666;
}

.social-links svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-nav nav {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }
}
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.app-buttons a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 20px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .car-grid {
        grid-template-columns: 1fr;
    }

    .steps, .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-specs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .car-price {
        flex-direction: column;
        gap: 10px;
    }
}

/* Add these styles for the mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Update the existing media query */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

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

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 10px;
    }
}

.services {
    padding: 80px 20px;
    background: #000;
    color: white;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.services-description {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    padding: 40px 30px;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.service p {
    color: #999;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services {
        padding: 60px 20px;
    }
    
    .services h2 {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}
.who-we-are {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
}

.who-we-are h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.who-we-are .highlight-text {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 40px;
}

.who-we-are h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.who-we-are .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.who-we-are .video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .who-we-are {
        padding: 60px 20px;
    }

    .who-we-are h2 {
        font-size: 2rem;
    }

    .who-we-are h3 {
        font-size: 1.5rem;
    }

    .who-we-are .video-container iframe {
        height: 300px;
    }
}

/* Popup Form Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    background-color: #c5a47e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #b08d66;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
}

.contact-us {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    color: #333;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-us .address {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #000;
}

.social-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: #333;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-us h2 {
        font-size: 2rem;
    }
    
    .contact-us .address,
    .contact-info a {
        font-size: 1rem;
    }
    
    .social-section h3 {
        font-size: 1.5rem;
    }
}