 * { font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
        /* Prevent horizontal scroll */
        body { overflow-x: hidden; width: 100%; margin: 0; padding: 0; }
        .bg-taxi-red { background-color: #dc2626; }
        .text-taxi-red { color: #dc2626; }
        .border-taxi-red { border-color: #dc2626; }
        .hover-taxi-red:hover { background-color: #b91c1c; }
        .bg-taxi-green { background-color: #dc2626; } /* Keeping the same red for consistency */

        /* full content width - no overflow */
        .full-width-container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .container-custom {
            width: 100%;
            max-width: 100%;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }
        @media (min-width: 1400px) {
            .container-custom {
                padding-left: 5rem;
                padding-right: 5rem;
            }
        }

        /* Banner image */
        .hero-booking-banner {
            background: linear-gradient(97deg, rgba(20,8,8,0.9) 0%, rgba(40,18,18,0.85) 100%), 
                        url('https://images.unsplash.com/photo-1549923746-c502d488b3ea?auto=format&fit=crop&q=85&w=1470');
            background-size: cover;
            background-position: center 25%;
        }

        /* floating cta with animation - original colors restored */
        .floating-cta {
            position: fixed; bottom: 28px; right: 28px; z-index: 999;
            display: flex; flex-direction: column; gap: 12px;
        }
        .float-btn {
            display: flex; align-items: center; justify-content: center; gap: 12px;
            padding: 14px 28px; border-radius: 40px; font-weight: 700;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.4); transition: all 0.3s ease;
            text-decoration: none; min-width: 190px;
            animation: float-pulse 2s infinite;
        }
        .float-btn:hover {
            transform: scale(1.12) translateY(-3px);
            filter: brightness(1.2);
            animation: none;
        }
        @keyframes float-pulse {
            0% { box-shadow: 0 15px 30px -8px rgba(220,38,38,0.4); }
            50% { box-shadow: 0 20px 40px -5px rgba(220,38,38,0.8); transform: scale(1.02); }
            100% { box-shadow: 0 15px 30px -8px rgba(220,38,38,0.4); }
        }
        /* original button colors */
        .btn-call { background: #dc2626; color: white; }
        .btn-wa { background: #25D366; color: white; }
        
        .round-field { display: none; }
        .round-field.active { display: block; }

        /* Tariff card styling - increased image height */
        .tariff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .tariff-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            position: relative;
        }
        .tariff-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 40px -15px rgba(220,38,38,0.2);
        }
        .popular {
            border: 2px solid #dc2626;
            transform: scale(1.02);
        }
        .service-image {
            height: 220px;
            overflow: hidden;
        }
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .tariff-card:hover .service-image img {
            transform: scale(1.1);
        }
        .tariff-header {
            padding: 16px 20px 0 20px;
        }
        .tariff-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e1e2a;
        }
        .tariff-body {
            padding: 10px 20px 25px 20px;
        }
        .tariff-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #dc2626;
            line-height: 1.2;
            margin-bottom: 15px;
        }
        .tariff-price span {
            font-size: 1rem;
            font-weight: 400;
            color: #6b7280;
        }
        .tariff-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        .tariff-features li {
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tariff-features i {
            color: #dc2626;
            font-size: 0.9rem;
        }
        .btn {
            display: inline-block;
            background: #dc2626;
            color: white;
            padding: 10px 25px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            box-shadow: 0 5px 15px -5px #dc2626;
        }
        .btn:hover {
            background: #b91c1c;
            transform: scale(1.05);
        }
        /* Services section - increased top margin */
        #services {
            margin-top: 60px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px -8px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
        }
        .service-card:hover {
            border-bottom-color: #dc2626;
            transform: translateY(-5px);
        }
        .service-card .service-image {
            height: 240px;
        }
        .service-content {
            padding: 20px;
        }
        .service-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .service-content p {
            color: #6b7280;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .section-title {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px auto;
        }
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #1e1e2a;
            margin-bottom: 10px;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #6b7280;
        }
        @media (max-width: 768px) {
            .section-title h2 { font-size: 2rem; }
        }
        .stats-bg {
            background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 100%);
        }
        .contact-card {
            transition: all 0.3s;
            border-left-width: 8px;
        }
        .contact-card:hover {
            transform: translateX(6px);
            box-shadow: 0 20px 30px -10px rgba(220,38,38,0.2);
        }

        /* Notification styles */
        #notification-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        .notification {
            background: white;
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 320px;
            max-width: 400px;
            animation: slideIn 0.3s ease;
            border-left: 6px solid;
        }

        .notification.success {
            border-left-color: #10b981;
        }

        .notification.error {
            border-left-color: #ef4444;
        }

        .notification.info {
            border-left-color: #3b82f6;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .notification.success .notification-icon {
            background: #10b981;
            color: white;
        }

        .notification.error .notification-icon {
            background: #ef4444;
            color: white;
        }

        .notification.info .notification-icon {
            background: #3b82f6;
            color: white;
        }

        .notification-content {
            flex: 1;
        }

        .notification-title {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .notification-message {
            font-size: 0.9rem;
            color: #6b7280;
        }

        .notification-close {
            color: #9ca3af;
            cursor: pointer;
            padding: 5px;
        }

        .notification-close:hover {
            color: #4b5563;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideOut {
            from {
                transform: translateX(0);
                opacity: 1;
            }
            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        /* Modal styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            max-width: 450px;
            width: 90%;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }
        .modal-overlay.active .modal-content {
            transform: scale(1);
        }
        .modal-icon {
            width: 70px;
            height: 70px;
            background: #dc2626;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin: 0 auto 20px;
        }
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 12px 25px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: scale(1.05);
        }