        .gradient-bg {
            background: linear-gradient(135deg, #3174cc 0%, #2563eb 100%);
        }

        /* Basic mobile optimizations - Allow normal scroll */
        html {
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            overflow-x: hidden;
            -webkit-touch-callout: none;
            -webkit-tap-highlight-color: transparent;
            min-height: 100vh;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            html, body {
                overflow-x: hidden !important;
                overflow-y: auto !important;
                width: 100% !important;
                max-width: 100% !important;
                -webkit-overflow-scrolling: touch !important;
            }
        }

        /* Force enable scroll for all elements */
        * {
            box-sizing: border-box;
        }

        .hover-scale {
            transition: all 0.3s ease;
        }

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

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .car-float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .pulse-border {
            animation: pulse-border 2s infinite;
        }

        @keyframes pulse-border {
            0% {
                box-shadow: 0 0 0 0 rgba(49, 116, 204, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(49, 116, 204, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(49, 116, 204, 0);
            }
        }

        .parallax {
            transform: translateY(0);
            transition: transform 0.1s ease-out;
        }

        .custom-shape-divider-bottom-1753753411 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .custom-shape-divider-bottom-1753753411 svg {
            position: relative;
            display: block;
            width: calc(127% + 1.3px);
            height: 127px;
            transform: rotateY(180deg);
        }

        .custom-shape-divider-bottom-1753753411 .shape-fill {
            fill: #f9fafb;
        }

        /* Mobile optimization for shape divider */
        @media (max-width: 768px) {
            .custom-shape-divider-bottom-1753753411 {
                height: 60px;
            }
            
            .custom-shape-divider-bottom-1753753411 svg {
                width: calc(150% + 1.3px);
                height: 60px;
            }
        }

        /* Mobile Menu Improvements */
        #mobile-menu {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            overflow: hidden;
        }

        /* Prevent body scroll when mobile menu is open */
        .mobile-menu-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
            height: 100% !important;
        }

        #mobile-menu .flex {
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            max-height: 100vh;
        }

        .mobile-menu-link {
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-link::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .mobile-menu-link:active::before {
            left: 100%;
        }

        @media (max-width: 768px) {
            #mobile-menu .text-lg {
                font-size: 1rem;
            }
            
            #mobile-menu .text-xl {
                font-size: 1.125rem;
            }
            
            .mobile-menu-link {
                padding: 1rem 0;
                border-radius: 8px;
                margin: 4px 0;
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .mobile-menu-link:hover {
                background: rgba(255,255,255,0.1);
                transform: translateX(5px);
            }
        }

        /* Enhanced gradient for better blend */
        .gradient-bg {
            background: linear-gradient(135deg, #3174cc 0%, #2563eb 50%, #1d4ed8 100%);
            position: relative;
        }

        .gradient-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center bottom, rgba(255,255,255,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        /* Booking Modal Styles */
        #bookingModal {
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease-out;
        }

        #bookingModal .bg-white {
            animation: slideInUp 0.3s ease-out;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInUp {
            from { 
                opacity: 0;
                transform: translateY(100px) scale(0.9);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Form input focus styles */
        .booking-form input:focus,
        .booking-form textarea:focus {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        /* Modal responsive design */
        @media (max-width: 640px) {
            #bookingModal .bg-white {
                margin: 1rem;
                max-height: calc(100vh - 2rem);
            }
        }

        /* Button loading state */
        .booking-btn.loading {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .booking-btn.loading::after {
            content: '';
            width: 16px;
            height: 16px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-left: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }