:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --primary-bg: #eff6ff;
            --dark: #0f172a;
            --dark-secondary: #1e293b;
            --text: #334155;
            --text-light: #64748b;
            --text-lighter: #94a3b8;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --border: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
            --radius: 12px;
            --radius-sm: 8px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== NAVIGATION ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: var(--transition);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text);
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
            gap: 8px;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37,99,235,0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
        }

        .btn-white:hover {
            background: var(--primary-bg);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 0.85rem;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--primary-bg) 0%, #dbeafe 50%, var(--white) 100%);
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 24px;
            box-shadow: var(--shadow);
        }

        .hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 1.05rem;
            color: var(--text-light);
            margin-bottom: 32px;
            max-width: 500px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
        }

        .hero-stat h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
        }

        .hero-stat h3 span {
            color: var(--primary);
        }

        .hero-stat p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 0.8s ease 0.2s both;
        }

        .hero-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        /* ===== BOOKING BAR ===== */
        .booking-bar {
            background: var(--white);
            padding: 32px 0;
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        .booking-bar .container {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            padding: 32px 40px;
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 20px;
            align-items: end;
        }

        .booking-field label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .booking-field input,
        .booking-field select {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            color: var(--text);
            transition: var(--transition);
            background: var(--light-bg);
        }

        .booking-field input:focus,
        .booking-field select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        }

        .booking-bar .btn-primary {
            padding: 14px 32px;
            white-space: nowrap;
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .subtitle {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--light-bg);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            padding: 36px 28px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-bg);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===== TOP VEHICLES ===== */
        .vehicles-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .vehicle-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .vehicle-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .vehicle-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .vehicle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .vehicle-card:hover .vehicle-image img {
            transform: scale(1.05);
        }

        .vehicle-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .vehicle-info {
            padding: 24px;
        }

        .vehicle-info h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .vehicle-specs {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
        }

        .vehicle-specs span {
            font-size: 0.8rem;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .vehicle-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 16px;
            border-top: 1px solid var(--border);
        }

        .vehicle-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
        }

        .vehicle-price span {
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .vehicle-footer .btn {
            padding: 8px 20px;
            font-size: 0.8rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--light-bg);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-content .subtitle {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .about-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .about-content > p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .about-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--text);
        }

        .about-features li .check {
            width: 24px;
            height: 24px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            background: var(--white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 20%;
            right: 20%;
            height: 2px;
            background: var(--border);
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            border: 3px solid var(--white);
            box-shadow: var(--shadow-lg);
        }

        .step-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            max-width: 280px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== WHY CHOOSE ===== */
        .why-choose {
            background: var(--light-bg);
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-content .subtitle {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .why-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .why-content > p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .why-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .why-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--text);
        }

        .why-features li .check {
            width: 24px;
            height: 24px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .why-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* ===== QUALITY SECTION ===== */
        .quality {
            background: var(--white);
        }

        .quality-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .quality-image img {
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .quality-content .subtitle {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .quality-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .quality-content > p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .quality-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .quality-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--text);
        }

        .quality-features li .check {
            width: 24px;
            height: 24px;
            background: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        /* ===== TEAM ===== */
        .team {
            background: var(--light-bg);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--primary-bg);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .team-card .role {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 16px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .team-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .team-social a:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: var(--white);
        }

        .testimonial-carousel {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .testimonial-item {
            display: none;
        }

        .testimonial-item.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-stars {
            color: #f59e0b;
            font-size: 1.2rem;
            margin-bottom: 24px;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 32px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-author img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author-info h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .testimonial-author-info p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 32px;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: var(--primary);
            width: 28px;
            border-radius: 5px;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--white);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.2rem;
            color: var(--text);
        }

        .carousel-nav:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .carousel-nav.prev {
            left: -60px;
        }

        .carousel-nav.next {
            right: -60px;
        }

        /* ===== BLOG ===== */
        .blog {
            background: var(--light-bg);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .blog-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .blog-image {
            height: 200px;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 24px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
        }

        .blog-meta span {
            font-size: 0.8rem;
            color: var(--text-lighter);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .blog-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-content p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .read-more {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
        }

        .read-more:hover {
            gap: 8px;
        }

        /* ===== CTA SECTION ===== */
        .cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta .btn-white {
            padding: 16px 36px;
            font-size: 1rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand .nav-logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .footer-contact li .icon {
            width: 20px;
            text-align: center;
            color: var(--primary-light);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 0.85rem;
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== KEYFRAMES ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.5rem; }
            .hero .container { gap: 40px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .booking-bar .container { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 20px;
                box-shadow: var(--shadow-lg);
                gap: 16px;
            }
            .hamburger { display: flex; }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero h1 { font-size: 2rem; }
            .hero p { margin: 0 auto 32px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-image { order: -1; }
            .hero-image img { height: 280px; }

            .booking-bar .container {
                grid-template-columns: 1fr;
                padding: 24px;
            }

            .services-grid { grid-template-columns: 1fr; }
            .vehicles-grid { grid-template-columns: 1fr; }
            .about-grid,
            .why-grid,
            .quality-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr; gap: 32px; }
            .steps-grid::before { display: none; }
            .team-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }

            .section { padding: 60px 0; }
            .section-header h2 { font-size: 1.8rem; }
            .cta h2 { font-size: 1.8rem; }

            .carousel-nav { display: none; }
        }