:root {
            --primary: #9c8a5a;
            --primary-light: #b9a87d;
            --primary-dark: #7d6d48;
            --secondary: #1a2639;
            --light: #f8f9fa;
            --dark: #343a40;
            --accent: #e8dfc7;
            --font-primary: 'Rufina', serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: var(--font-primary), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
            perspective: 1000px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 38, 57, 0.8), rgba(26, 38, 57, 0.9)), url('../image/fleet.jpg') center/cover no-repeat;
            color: var(--light);
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(156, 138, 90, 0.2) 0%, rgba(156, 138, 90, 0) 70%);
            animation: rotateGradient 20s infinite linear;
            pointer-events: none;
        }

        @keyframes rotateGradient {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, var(--light), transparent);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            transform: translateZ(0);
        }

        .hero h1 {
            font-size: 5rem;
            margin-bottom: 20px;
            opacity: 0;
            transform-style: preserve-3d;
            animation: heroTitle 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            text-shadow: 0 5px 15px rgba(26, 38, 57, 0.5);
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.8s;
        }

        @keyframes heroTitle {
            0% {
                opacity: 0;
                transform: translateY(-100px) rotateX(30deg);
                letter-spacing: -10px;
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0);
                letter-spacing: normal;
            }
        }

        .scroll-down {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            animation: fadeIn 1s forwards 1.5s;
            z-index: 2;
        }

        .scroll-down::after {
            content: '';
            width: 2px;
            height: 40px;
            background-color: var(--primary);
            margin-top: 15px;
            animation: scrollPulse 2s infinite;
        }

        @keyframes scrollPulse {
            0%, 100% {
                transform: scaleY(1);
                opacity: 1;
            }
            50% {
                transform: scaleY(1.5);
                opacity: 0.6;
            }
        }

        /* Vehicles Section */
        .vehicles-section {
            padding: 120px 20px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            font-size: 3.5rem;
            color: var(--secondary);
            opacity: 0;
            animation: fadeTitle 1s forwards;
        }

        @keyframes fadeTitle {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            border-radius: 2px;
        }

      
        .vehicles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 40px;
            perspective: 1200px;
        }

        .vehicle-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(26, 38, 57, 0.1);
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            transform-style: preserve-3d;
            opacity: 0;
            transform: rotateY(20deg) translateZ(100px);
            backface-visibility: hidden;
        }

        .vehicle-card.animated {
            animation: cardReveal 0.9s forwards cubic-bezier(0.23, 1, 0.32, 1);
            animation-delay: calc(0.15s * var(--i));
        }

        @keyframes cardReveal {
            0% {
                opacity: 0;
                transform: rotateY(20deg) translateZ(100px);
            }
            100% {
                opacity: 1;
                transform: rotateY(0) translateZ(0);
            }
        }

        .vehicle-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: 1;
            pointer-events: none;
        }

        .vehicle-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 60px rgba(26, 38, 57, 0.18);
        }

        .vehicle-card:hover::before {
            opacity: 0.1;
        }

        .vehicle-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .vehicle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .vehicle-card:hover .vehicle-image img {
            transform: scale(1.15) rotate(3deg);
        }

        .vehicle-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
            transform: skewX(-25deg);
            animation: shine 5s infinite;
            animation-delay: calc(1s * var(--i));
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            20%, 100% {
                left: 100%;
            }
        }

        .vehicle-details {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .vehicle-name {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .vehicle-name::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .vehicle-card:hover .vehicle-name::after {
            width: 100%;
        }

        .vehicle-card:hover .vehicle-name {
            transform: translateX(5px);
        }

        .vehicle-capacity {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-size: 1.1rem;
            color: var(--dark);
        }

        .seat-icon {
            margin-right: 10px;
            color: var(--primary);
        }

        .vehicle-description {
            color: #666;
            margin-bottom: 25px;
            line-height: 1.7;
            transition: transform 0.4s ease;
        }

        .vehicle-card:hover .vehicle-description {
            transform: translateY(-5px);
        }

        .view-button {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
            box-shadow: 0 6px 15px rgba(0, 136, 204, 0.3);
        }

        .view-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--primary-dark), var(--primary));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .view-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 136, 204, 0.4);
        }

        /* Decorative Elements */
        .decorative-circle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.2;
            z-index: -1;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -200px;
            right: -200px;
        }

        /* Animations */
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .vehicles-grid {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .vehicles-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
