/* Root Variables */
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #6c757d;
            --success-color: #198754;
            --danger-color: #dc3545;
            --warning-color: #ffc107;
            --info-color: #0dcaf0;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
            --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
            --shadow-heavy: 0 10px 40px rgba(0,0,0,0.2);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            overflow-x: hidden;
        }

        /* Enhanced Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 100%, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translate3d(100%, 0, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale3d(0.3, 0.3, 0.3);
            }
            50% {
                opacity: 1;
            }
        }

        /* Discount Banner */
        .discount-banner {
            background: var(--gradient-secondary);
            color: white;
            padding: 12px 0;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: var(--shadow-light);
        }
        
        .discount-scroll {
            display: inline-block;
            padding-left: 100%;
            animation: scrollBanner 25s linear infinite;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        @keyframes scrollBanner {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Enhanced Navigation */
        .navbar {
            background: var(--gradient-primary) !important;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            font-size: 2rem;
            color: #ffd700;
            animation: pulse 2s infinite;
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .nav-link:hover {
            color: white !important;
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .nav-link i {
            margin-right: 8px;
            font-size: 1.1rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
            min-height: 300px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>');
            background-size: cover;
        }
        
        .logo-animation {
            height: 200px;
            width: 200px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
            border-radius: 50%;
            box-shadow: var(--shadow-heavy);
            background: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-animation i {
            font-size: 4rem;
            color: var(--primary-color);
            animation: pulse 2s infinite;
        }
        
        /* Festival Banner */
        .banner-container {
            width: 100%;
            max-width: 1200px;
            height: 120px;
            position: relative;
            overflow: hidden;
            background: var(--gradient-success);
            border-radius: var(--border-radius);
            margin-top: 30px;
            box-shadow: var(--shadow-medium);
        }
        
        .confetti {
            position: absolute;
            width: 12px;
            height: 12px;
            opacity: 0.8;
            animation: fall 6s linear infinite;
            border-radius: 50%;
        }
        
        @keyframes fall {
            to { 
                transform: translateY(150px) rotate(360deg); 
                opacity: 0; 
            }
        }
        
        .festival-banner {
            display: flex;
            position: absolute;
            height: 100%;
            align-items: center;
            animation: scrollBanner 25s linear infinite;
        }
        
        .banner-item {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 0 30px;
            flex-shrink: 0;
        }
        
        .car-image {
            height: 80px;
            width: auto;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-light);
            background: white;
            padding: 10px;
        }
        
        .festival-decoration {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Header Section */
        .hero-header {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="1000,100 1000,0 0,100"/></svg>');
            background-size: cover;
        }

        .hero-text {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInUp 1s ease-out;
        }

        .lead {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .btn-enhanced {
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-light);
        }

        .btn-enhanced:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .btn-enhanced i {
            font-size: 1.2rem;
        }

        /* Date Filters Section */
        .date-filters {
            background: var(--light-color);
            padding: 40px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .date-filter-btn {
            border-radius: var(--border-radius);
            padding: 12px 20px;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .date-filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-light);
        }

        .date-filter-btn.active {
            background: var(--primary-color);
            color: white;
            box-shadow: var(--shadow-light);
        }

        .custom-date-group {
            display: flex;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .custom-date-group input {
            border-radius: 0;
            border-right: none;
        }

        .custom-date-group button {
            border-radius: 0;
            padding: 12px 20px;
        }

        /* Loading and Error Styles */
        .loading-spinner {
            width: 4rem;
            height: 4rem;
            color: var(--primary-color);
        }

        .error-message {
            color: var(--danger-color);
            font-size: 1rem;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Enhanced Car Cards */
        .car-card {
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            margin-bottom: 30px;
            box-shadow: var(--shadow-light);
            background: white;
        }

        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .car-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
            transition: var(--transition);
        }

        .car-card:hover .car-img {
            transform: scale(1.05);
        }

        .card-body {
            padding: 25px;
        }

        .card-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .card-text {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .price-badge {
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .feature-badge {
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 15px;
            margin-right: 5px;
            margin-bottom: 5px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .book-btn {
            background: var(--gradient-primary);
            border: none;
            color: white;
            padding: 12px 0;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            background: var(--gradient-secondary);
        }

        /* Section Headers */
        .section-header {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .section-header i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        /* No Cars Available */
        .no-cars-available {
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .alert-info {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            border: none;
            border-radius: var(--border-radius);
            padding: 30px;
            font-size: 1.1rem;
            color: #1565c0;
            box-shadow: var(--shadow-light);
        }

        /* Contact Section */
        .contact {
            background: var(--light-color);
            padding: 80px 0;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .contact-header .lead {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }

        .info-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            height: 100%;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .info-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .info-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .info-item h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .info-item p {
            margin: 0;
            line-height: 1.6;
        }

        .info-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

        .info-item a:hover {
            text-decoration: underline;
        }

        /* Google Maps */
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            height: 500px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Enhanced Modal */
        .modal-content {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-heavy);
        }

        .modal-header {
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            padding: 20px 30px;
        }

        .modal-title {
            font-size: 1.4rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modal-body {
            padding: 30px;
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-control, .form-select {
            border-radius: var(--border-radius);
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
        }

        .alert-secondary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: none;
            border-radius: var(--border-radius);
            padding: 20px;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .footer p {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer a:hover {
            color: var(--primary-color);
        }

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

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            background: var(--gradient-secondary);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-text {
                font-size: 2.5rem;
            }
            
            .logo-animation {
                height: 150px;
                width: 150px;
            }
            
            .banner-container {
                height: 100px;
            }
            
            .festival-decoration {
                font-size: 1.1rem;
            }
            
            .section-header {
                font-size: 1.6rem;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .date-filter-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .hero-text {
                font-size: 2rem;
            }
            
            .btn-enhanced {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .modal-body {
                padding: 20px;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #0a58ca;
        }
        img.logo-animation {
    /* Size and Appearance */
    width: auto;
    height: 250px; /* Adjust based on your logo size */
    
    
    /* Animation */
    animation: logoFloat 3s ease-in-out infinite;
    
    /* Positioning */
    display: block;
    margin: 0 auto 30px;
    
    /* Effects */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

/* Keyframes for floating animation */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-22px) rotate(2deg); /* 22px upward float */
    }
    75% {
        transform: translateY(22px) rotate(-1deg); /* 22px downward float */
    }
}

/* Optional hover effect */
img.logo-animation:hover {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
    animation-play-state: paused;
}
