/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Prevent Horizontal Scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Header Mobile Styles */
    .header {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        background: var(--background-color);
        padding: 0.8rem 1rem;
        z-index: 2000;
        box-sizing: border-box;
    }

    .nav-container {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .logo img {
        height: 35px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 2000;
    }

    .hamburger:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        border-radius: 10px;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        margin: 0 20px;
        background: #FFD60A;
        border-radius: 12px;
        display: none;
        padding: 1rem 1.5rem 1rem 1.5rem;
        z-index: 2000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: block;
    }

    .nav-links a {
        color: #000;
        text-decoration: none;
        font-size: 1rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background: #FFD60A;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.book-now,
    .nav-links .book-now {
        background: #000;
        color: #fff !important;
        padding: 0.8rem;
        text-align: center;
        border-radius: 4px;
        margin: 0.5rem 0;
        border: none;
        font-size: 1.1rem !important;
    }

    .menu-overlay,
    .menu-close {
        display: none;
    }

    /* Hero Mobile Styles */
    .hero {
        width: 100%;
        padding: 4rem 1rem 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        overflow: hidden;
        min-height: 95vh;
    }

    .hero-content {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        position: relative;
        z-index: 2;
        margin-bottom: 1rem;
    }

    .hero .hero-content h1,
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin: 0;
        margin-top: 80px;
        text-align: center;
        line-height: 1;
    }

    .hero .hero-content p,
    .hero-content p {
        font-size: 1rem !important;
        text-align: center;
        margin: 0.5rem 0 1rem 0;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .register-btn {
        width: auto;
        padding: 1rem 1rem;
        text-align: center;
        font-size: 1rem !important;
    }

    .hero-image {
        width: 100%;
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        height: auto;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        
        margin: 0 auto;
    }

    /* Services Section Mobile Styles */
    .services-section {
        padding: 4rem 1rem 2rem;
    }

    .services-header {
        padding: 0;
        margin-bottom: 2rem;
    }

    .services-header h2 {
        font-size: 2.2rem !important;
        margin: 0;
        margin-top: 1rem;
        line-height: 1;
        letter-spacing: -0.02em;
    }

    .services-header p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;  /* Change to single column */
        gap: 1rem;
        padding: 0;
    }

    .service-card {
    
        aspect-ratio: 16/9;  /* Maintain aspect ratio */
    }

    .service-card h3 {
        font-size: 1.5rem;
        line-height: 1;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1;
    }

    .service-content {
        padding: 1.5rem;  /* Reduce padding for mobile */
    }

    /* Fleet Section Mobile Styles */
    .fleet-section {
        padding: 4rem 1rem 2rem;
    }

    .fleet-header {
        margin-bottom: 2rem;
    }

    .fleet-header h2 {
        margin-bottom: 1rem;
        font-size: 2.2rem !important;
        line-height: 1;
       
        margin-top: 1rem;
        letter-spacing: -0.05em;
    }

    .fleet-header p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;  /* Single column for mobile */
        gap: 1rem;
    }

    .car-card {
        padding: 1.5rem;  /* Reduce padding */
    }

    .car-card h3 {
        font-size: 1.8rem;  /* Slightly smaller font */
        margin-bottom: 0.5rem;
    }

    .car-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .car-card img {
        width: 100%;
        margin: 1rem 0;
        transform: scale(1.05);  /* Slightly reduced scale */
    }

    .car-card .book-now {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Commitment Section Mobile Styles */
    .commitment-section {
        padding: 4rem 1rem 2rem;
    }

    .commitment-content {
        padding: 2rem 1rem;
    }

    .commitment-content h2 {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 1rem;
        margin-top: 1rem;
        letter-spacing: -0.05em;
    }

    .commitment-content > p {
        font-size: 1.1rem;
        line-height: 1.1;
        text-align: justify;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);  /* 2 columns for stats */
        gap: 1rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;  /* Reduced size for mobile */
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .features-grid {
        grid-template-columns: 1fr;  /* Single column for features */
        gap: 1rem;
    }

    .feature-item {
        padding: 0.8rem 1.2rem;
    }

    .feature-item p {
        font-size: 1rem;
    }

    /* Testimonials Section Mobile Styles */
    .testimonials-section {
        padding: 4rem 1rem;
        margin: 2rem 1rem;
    }

    .testimonials-header {
        margin-bottom: 2rem;
    }

    .testimonials-header h2 {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 1rem;
    
        letter-spacing: -0.05em;
    }

    .testimonials-header p {
        font-size: 1rem;
        line-height: 1.1;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-content {
        padding: 0 1rem;  /* Reduced padding */
        min-height: auto;  /* Allow natural height */
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0;
        margin: 1.5rem 0;
    }

    .testimonial-author h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .testimonial-author p {
        font-size: 0.9rem;
    }

    .testimonial-dots {
        margin-top: 1.5rem;
    }

    .dot {
        width: 1.5rem;  /* Slightly smaller dots */
        height: 2px;
    }

    /* Booking Section Mobile Styles */
    .booking-section {
        padding: 2rem 1rem;
    }

    .booking-container {
        grid-template-columns: 1fr;  /* Single column for mobile */
    }

    .booking-form {
        padding: 2rem;
        height: auto;  /* Allow natural height */
    }

    .booking-form h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        line-height: 1;
        letter-spacing: -0.05em;
    }

    .form-row {
        grid-template-columns: 1fr;  /* Stack form fields */
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.8rem 0;
    }

    .request-booking {
        margin-top: 2rem;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .booking-image {
        display: none;  /* Hide image on mobile */
    }

    /* Footer Mobile Styles */
    .footer-container {
        grid-template-columns: 1fr;  /* Single column layout */
    }

    .footer-content {
        padding: 1rem 1rem;
    }

    .footer-content h2 {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 1rem;
        letter-spacing: -0.05em;
    }

    .footer-content > p {
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .footer-info {
        grid-template-columns: 1fr;  /* Stack info blocks */
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .info-block h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .info-block p {
        font-size: 1rem;
        line-height: 0.7;
       
    }

    .footer-map {
        height: 300px;

        border-radius: 0.5;
    }

    .footer-bottom {
        padding: 1.5rem;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* FAQ Section Mobile Styles */
    .faq-section {
        padding: 4rem 1rem 2rem;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-header h2 {
        font-size: 2.2rem;
        line-height: 1;
        margin-top: 1rem;
        
        margin-bottom: 1rem;
        letter-spacing: -0.05em;
    }

    .faq-header p {
        font-size: 1rem;
        line-height: 1.1;
        padding-left: 30px;
        padding-right: 30px;
        margin-bottom: 1.5rem;
    }

    .faq-container {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;  /* Reduced padding */
    }

    .faq-question h3 {
        font-size: 1.1rem;  /* Smaller font size */
        line-height: 1.3;
    }

    .faq-answer {
        padding: 0 1rem;  /* Match question padding */
    }

    .faq-answer p {
        font-size: 1rem;
        text-align: justify;
        line-height: 1.4;
        padding-bottom: 1.2rem;
    }

    .faq-icon {
        font-size: 1.2rem;  /* Smaller icon */
    }
}

/* Small Mobile Styles (iPhone SE, etc.) */
@media screen and (max-width: 375px) {
    .hero {
        min-height: 105vh;  /* Reduced height for smaller screens */
    }

    .hero-content h1 {
        font-size: 2.4rem;  /* Smaller font for smaller screens */
        margin-top: 60px;  /* Reduced top margin */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-image {
        width: 100%;
        bottom: 1rem;  /* Adjusted position */
    }

    .hero-image img {
        width: 90%;  /* Slightly smaller image */
        margin: 0 auto;
        display: block;
    }

    .hero-buttons {
        margin-bottom: 0.5rem;  /* Reduced margin */
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 6rem 2rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3.2rem;
        margin-top: -80px;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    .register-btn {
        padding: 0.8rem 1.5rem;
    }

    .services-header h2 {
        font-size: 3rem;
    }

    .services-grid {
        gap: 1.25rem;
    }

    .services-section {
        padding: 6rem 2rem 2rem;
    }

    .fleet-section {
        padding: 6rem 2rem 2rem;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .commitment-section {
        padding: 6rem 2rem 2rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-section {
        padding: 6rem 2rem;
        margin: 3rem 2rem;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

/* Landscape Mobile Styles */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 5rem;
        min-height: auto;
    }

    .hero-content h1 {
        margin-top: 0;
    }
}

/* Large Screens */
@media screen and (min-width: 1400px) {
    .hero {
        padding: 8rem 6rem 4rem;
    }

    .services-section {
        padding: 8rem 6rem 4rem;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 