/* Modern Responsive Design */

/* Large Tablet Styles */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3.5rem; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .vehicles-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
    .contact-grid { gap: 3rem; }
}

/* Tablet Styles */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        height: 70vh;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Vehicles Grid */
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Form Styles */
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-container {
        padding: 1rem 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
    }
    
    /* Sections */
    .services-preview,
    .vehicles,
    .cta-section {
        padding: 60px 0;
    }
    
    /* Service Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    /* Vehicle Cards */
    .vehicle-info {
        padding: 1rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Booking Form Responsive */
@media (max-width: 768px) {
    .booking-section {
        padding: 60px 0;
    }
    
    .booking-form {
        margin-bottom: 2rem;
    }
    
    .booking-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .vehicle-selection {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-card,
    .vehicle-card,
    .contact-item {
        padding: 1.5rem;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .vehicle-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .services-preview,
    .vehicles,
    .contact-section,
    .special-services {
        padding: 60px 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .btn-primary,
    .btn-secondary,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        height: auto;
        background: none;
        color: var(--text-dark);
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        color: var(--primary-color);
    }
}