        /* ===== ROOT VARIABLES ===== */
        :root {
            --primary: #FFD60A;
            --primary-dark: #FFC300;
            --secondary: #001D3D;
            --dark: #000814;
            --dark-alt: #003566;
            --light: #FFFFFF;
            --gray: #8D99AE;
            --gray-light: #EDF2F4;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-yellow: 0 10px 40px rgba(255, 214, 10, 0.3);
            --shadow-dark: 0 15px 50px rgba(0, 0, 0, 0.2);
        }

        /* ===== GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
            line-height: 1.7;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        ::selection {
            background: var(--primary);
            color: var(--dark);
        }

        /* ===== CUSTOM SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, #001D3D 0%, #000814 70%);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.7s ease, visibility 0.7s ease;
            overflow: hidden;
        }

        .preloader::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 214, 10, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 214, 10, 0.04) 0%, transparent 50%);
            pointer-events: none;
        }

        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        /* Brand name */
        .loader-brand {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 2px;
            margin-bottom: 32px;
            animation: brandPulse 2s infinite ease-in-out;
            text-shadow: 0 0 30px rgba(255, 214, 10, 0.5);
        }

        @keyframes brandPulse {

            0%,
            100% {
                opacity: 1;
                text-shadow: 0 0 30px rgba(255, 214, 10, 0.5);
            }

            50% {
                opacity: 0.7;
                text-shadow: 0 0 60px rgba(255, 214, 10, 0.9);
            }
        }

        /* Road scene container */
        .road-scene {
            position: relative;
            width: 340px;
            height: 110px;
            overflow: hidden;
        }

        /* Road strip */
        .road-strip {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 18px;
            background: #111;
            border-top: 2px solid #333;
            display: flex;
            align-items: center;
            gap: 0;
            overflow: hidden;
        }

        .road-dash {
            flex-shrink: 0;
            width: 50px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            margin-right: 36px;
            animation: dashScroll 0.5s linear infinite;
        }

        @keyframes dashScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-86px);
            }
        }

        /* Taxi wrapper */
        .taxi-wrap {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            animation: taxiBob 0.4s infinite ease-in-out alternate;
        }

        @keyframes taxiBob {
            0% {
                transform: translateX(-50%) translateY(0px) rotate(0deg);
            }

            100% {
                transform: translateX(-50%) translateY(-5px) rotate(0.5deg);
            }
        }

        .taxi-img {
            width: 200px;
            display: block;
            filter: drop-shadow(0 6px 20px rgba(255, 214, 10, 0.7));
            animation: taxiGlow 1.6s infinite ease-in-out;
        }

        @keyframes taxiGlow {

            0%,
            100% {
                filter: drop-shadow(0 6px 20px rgba(255, 214, 10, 0.7));
            }

            50% {
                filter: drop-shadow(0 6px 36px rgba(255, 214, 10, 1));
            }
        }


        /* Headlight beam */
        .headlight {
            position: absolute;
            right: -30px;
            top: 30px;
            width: 40px;
            height: 12px;
            background: linear-gradient(to right, rgba(255, 255, 200, 0.8), transparent);
            border-radius: 0 50% 50% 0;
            animation: beamFlicker 1.2s infinite ease-in-out;
        }

        @keyframes beamFlicker {

            0%,
            100% {
                opacity: 0.9;
                width: 40px;
            }

            50% {
                opacity: 0.5;
                width: 28px;
            }
        }

        /* Loader text */
        .loader-text {
            margin-top: 28px;
            font-family: var(--font-body);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
        }

        .dots span {
            animation: dotBlink 1.4s infinite;
            opacity: 0;
        }

        .dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .dots span:nth-child(2) {
            animation-delay: 0.25s;
        }

        .dots span:nth-child(3) {
            animation-delay: 0.5s;
        }

        @keyframes dotBlink {

            0%,
            80%,
            100% {
                opacity: 0;
            }

            40% {
                opacity: 1;
            }
        }

        /* Progress bar */
        .loader-bar-wrap {
            margin-top: 14px;
            width: 220px;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 99px;
            overflow: hidden;
        }

        .loader-bar {
            height: 100%;
            width: 40%;
            background: linear-gradient(90deg, var(--primary), #fff, var(--primary));
            background-size: 200% 100%;
            border-radius: 99px;
            animation: barSlide 1.4s linear infinite;
        }

        @keyframes barSlide {
            0% {
                transform: translateX(-100%);
                background-position: 0% 0;
            }

            100% {
                transform: translateX(350%);
                background-position: 200% 0;
            }
        }

        .taxi-loader {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            padding: 20px 0;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(0, 8, 20, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--light) !important;
            letter-spacing: 1px;
        }

        .navbar-brand span {
            color: var(--primary);
        }

        .navbar-brand i {
            color: var(--primary);
            margin-right: 8px;
            animation: wiggle 3s infinite ease-in-out;
        }

        @keyframes wiggle {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-10deg);
            }

            75% {
                transform: rotate(10deg);
            }
        }

        .navbar-nav .nav-link {
            color: var(--light) !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: var(--transition);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
        }

        .navbar-toggler {
            border: none;
            background: rgba(255, 214, 10, 0.1);
            border-radius: 10px;
            padding: 10px 12px;
            width: 46px;
            height: 46px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .navbar-toggler:focus {
            box-shadow: none;
            background: rgba(255, 214, 10, 0.2);
        }

        .navbar-toggler:hover {
            background: rgba(255, 214, 10, 0.2);
        }

        .navbar-toggler-icon {
            display: none;
        }

        .toggler-bar {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
            transform-origin: center;
        }

        .navbar-toggler.open .toggler-bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .navbar-toggler.open .toggler-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .navbar-toggler.open .toggler-bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(0, 8, 20, 0.85) 0%, rgba(0, 29, 61, 0.75) 100%),
                url('yellow-car.jpg') center/cover no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            color: var(--light);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 214, 10, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 214, 10, 0.15);
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 25px;
            letter-spacing: 1px;
        }

        .hero-badge i {
            margin-right: 8px;
        }

        .hero h1 .highlight {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 214, 10, 0.25);
            z-index: -1;
        }

        .hero p.lead {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.9;
            max-width: 550px;
        }

        .hero-cta {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn-primary-custom {
            background: var(--primary);
            color: var(--dark);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary-custom:hover {
            background: var(--light);
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-yellow);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--light);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            border: 2px solid var(--light);
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-outline-custom:hover {
            background: var(--light);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Hero photo card */
        .hero-photo-card {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 60px;
            padding: 8px 22px 8px 8px;
            width: fit-content;
        }

        .hero-photo-card img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center top;
            border: 2px solid var(--primary);
            flex-shrink: 0;
        }

        .hero-photo-card-text {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--light);
            font-size: 0.9rem;
        }

        .hero-photo-card-text strong {
            color: var(--primary);
        }

        /* Booking card */
        .booking-card {
            background: var(--light);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            color: var(--dark);
        }

        .booking-card h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--secondary);
        }

        .booking-card .form-label {
            font-weight: 500;
            font-size: 0.85rem;
            color: var(--secondary);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .booking-card .form-control,
        .booking-card .form-select {
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .booking-card .form-control:focus,
        .booking-card .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.2);
        }

        .booking-card .btn-book {
            background: var(--secondary);
            color: var(--light);
            padding: 14px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            width: 100%;
            transition: var(--transition);
            letter-spacing: 1px;
        }

        .booking-card .btn-book:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* Scroll indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--light);
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            white-space: nowrap;
            animation: bounceDown 2s infinite;
        }

        @keyframes bounceDown {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

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

        /* ===== SECTION STYLES ===== */
        section {
            padding: 100px 0;
            position: relative;
        }

        .section-label {
            color: var(--primary-dark);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 0.85rem;
            margin-bottom: 15px;
            display: inline-block;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: var(--gray);
            font-size: 1.05rem;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ===== FEATURES STRIP ===== */
        .features-strip {
            background: var(--secondary);
            padding: 40px 0;
            color: var(--light);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .feature-item i {
            font-size: 2.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .feature-item:hover i {
            transform: rotate(15deg) scale(1.1);
        }

        .feature-item h5 {
            font-family: var(--font-body);
            font-weight: 600;
            margin-bottom: 3px;
            font-size: 1.05rem;
        }

        .feature-item p {
            font-size: 0.85rem;
            opacity: 0.7;
            margin: 0;
        }

        /* ===== SERVICES SECTION ===== */
        .service-card {
            background: var(--light);
            padding: 45px 30px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            border: 1px solid #f0f0f0;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--primary) 0%, transparent 50%);
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 0.1;
            top: -20%;
            right: -20%;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 29, 61, 0.15);
            border-color: var(--primary);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.2rem;
            color: var(--dark);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
        }

        .service-card h4 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .service-card .learn-more {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }

        .service-card .learn-more i {
            transition: var(--transition);
            margin-left: 5px;
        }

        .service-card:hover .learn-more {
            color: var(--primary-dark);
        }

        .service-card:hover .learn-more i {
            transform: translateX(5px);
        }

        /* ===== PARALLAX STATS SECTION ===== */
        .parallax-stats {
            background: linear-gradient(135deg, rgba(0, 8, 20, 0.88) 0%, rgba(0, 53, 102, 0.85) 100%),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2000') center/cover no-repeat;
            background-attachment: fixed;
            padding: 120px 0;
            color: var(--light);
            position: relative;
        }

        .stat-box {
            text-align: center;
            padding: 20px;
        }

        .stat-box .stat-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            transition: var(--transition);
        }

        .stat-box:hover .stat-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .stat-box .stat-number {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--light);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-box .stat-label {
            font-size: 1rem;
            opacity: 0.85;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ===== ABOUT SECTION ===== */
        .about-img-wrapper {
            position: relative;
        }

        .about-img-wrapper img {
            border-radius: 20px;
            box-shadow: var(--shadow-dark);
            width: 100%;
        }

        .about-img-wrapper .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--primary);
            padding: 25px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(255, 214, 10, 0.4);
        }

        .about-img-wrapper .experience-badge .number {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            line-height: 1;
        }

        .about-img-wrapper .experience-badge .text {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content .check-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
        }

        .about-content .check-item i {
            width: 30px;
            height: 30px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .about-content .check-item span {
            font-weight: 500;
            color: var(--secondary);
        }

        /* ===== FLEET SECTION ===== */
        .fleet-section {
            background: var(--gray-light);
        }

        .fleet-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
        }

        .fleet-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 29, 61, 0.15);
        }

        .fleet-img {
            height: 220px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--secondary), var(--dark-alt));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fleet-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .fleet-card:hover .fleet-img img {
            transform: scale(1.1);
        }

        .fleet-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .fleet-body {
            padding: 25px;
        }

        .fleet-body h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .fleet-specs {
            display: flex;
            gap: 18px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .fleet-specs span {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray);
            font-size: 0.85rem;
        }

        .fleet-specs span i {
            color: var(--primary-dark);
        }

        .fleet-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 18px;
            border-top: 1px solid #eee;
        }

        .fleet-price .price {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--secondary);
        }

        .fleet-price .price span {
            font-size: 0.85rem;
            color: var(--gray);
            font-weight: 400;
            font-family: var(--font-body);
        }

        .fleet-price .btn-book-sm {
            background: var(--secondary);
            color: var(--light);
            padding: 8px 18px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 700;
            transition: var(--transition);
        }

        .fleet-price .btn-book-sm:hover {
            background: var(--primary);
            color: var(--dark);
        }

        /* ===== NEW FLEET CARD STYLE ===== */
        .fleet-section-new {
            background: linear-gradient(135deg, rgba(0, 8, 20, 0.95) 0%, rgba(0, 53, 102, 0.92) 100%), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2000') center/cover no-repeat;
            background-attachment: fixed;
            padding: 80px 0;
        }

        .fleet-card-new {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 29, 61, 0.12);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .fleet-card-new:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 56px rgba(0, 29, 61, 0.22);
        }

        .fleet-img-new {
            position: relative;
            height: 230px;
            overflow: hidden;
            background: var(--gray-light);
        }

        .fleet-img-new img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .fleet-card-new:hover .fleet-img-new img {
            transform: scale(1.08);
        }

        .fleet-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 2;
        }

        .fleet-badge-sedan {
            background: var(--primary);
            color: var(--dark);
        }

        .fleet-badge-premium {
            background: var(--secondary);
            color: var(--primary);
        }

        .fleet-badge-mpv {
            background: var(--dark-alt);
            color: var(--primary);
        }

        .fleet-badge-van {
            background: var(--dark);
            color: var(--primary);
        }

        .fleet-body-new {
            padding: 20px 22px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .fleet-category-label {
            color: var(--primary-dark);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .fleet-name {
            color: var(--secondary);
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .fleet-specs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 22px;
            margin-bottom: 16px;
        }

        .fleet-specs-grid span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.83rem;
            color: var(--gray);
            font-weight: 500;
        }

        .fleet-specs-grid span i {
            color: var(--secondary);
            font-size: 0.85rem;
            width: 14px;
            text-align: center;
        }

        .fleet-divider-line {
            border: none;
            border-top: 1px solid var(--gray-light);
            margin: auto 0 16px;
        }

        .btn-fleet-book {
            display: block;
            width: 100%;
            text-align: center;
            background: var(--primary);
            color: var(--dark);
            padding: 13px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: var(--font-body);
            transition: var(--transition);
        }

        .btn-fleet-book:hover {
            background: var(--secondary);
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: var(--shadow-yellow);
        }

        /* ===== HOW IT WORKS ===== */
        .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--light);
            border: 3px dashed var(--primary);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary);
            margin-bottom: 25px;
            transition: var(--transition);
            animation: rotate-border 10s linear infinite;
        }

        @keyframes rotate-border {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .step-card:hover .step-number {
            background: var(--primary);
            animation-play-state: paused;
        }

        .step-icon {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .step-card h4 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .step-card p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section {
            background: var(--secondary);
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '"';
            position: absolute;
            top: -100px;
            right: 50px;
            font-family: var(--font-heading);
            font-size: 30rem;
            color: var(--primary);
            opacity: 0.08;
            line-height: 1;
        }

        .testimonials-section .section-title {
            color: var(--light);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 100%;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            background: rgba(255, 214, 10, 0.05);
        }

        .testimonial-stars {
            color: var(--primary);
            margin-bottom: 18px;
            font-size: 1.1rem;
        }

        .testimonial-card p {
            font-style: italic;
            margin-bottom: 25px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author .avatar {
            width: 55px;
            height: 55px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            font-family: var(--font-heading);
        }

        .testimonial-author h6 {
            margin: 0;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
        }

        .testimonial-author span {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '\f1b9';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 25rem;
            color: var(--dark);
            opacity: 0.06;
        }

        .cta-section h2 {
            color: var(--dark);
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            margin-bottom: 10px;
        }

        .cta-section p {
            color: var(--dark);
            font-size: 1.1rem;
            opacity: 0.85;
            margin: 0;
        }

        .cta-phone {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--dark);
            color: var(--primary);
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .cta-phone:hover {
            background: var(--light);
            color: var(--dark);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-phone i {
            font-size: 1.5rem;
            animation: shake 2s infinite;
        }

        @keyframes shake {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(-15deg);
            }

            75% {
                transform: rotate(15deg);
            }
        }

        /* ===== CONTACT SECTION ===== */
        .contact-info-card {
            background: var(--light);
            padding: 35px 25px;
            border-radius: 20px;
            text-align: center;
            height: 100%;
            border: 2px solid #f0f0f0;
            transition: var(--transition);
        }

        .contact-info-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 29, 61, 0.1);
        }

        .contact-info-card i {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .contact-info-card:hover i {
            transform: scale(1.2);
        }

        .contact-info-card h5 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-family: var(--font-body);
            font-weight: 600;
        }

        .contact-info-card p {
            color: var(--gray);
            margin: 0;
            font-size: 0.95rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 80px 0 0;
        }

        footer h5 {
            color: var(--light);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 14px;
            letter-spacing: 0.3px;
        }

        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 36px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-logo {
            height: auto;
            width: 180px;
            object-fit: contain;
        }

        footer p {
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.92rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        footer ul li {
            margin-bottom: 12px;
        }

        footer ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.93rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        footer ul li a:hover {
            color: var(--primary);
            gap: 12px;
        }

        footer ul li a i {
            font-size: 0.7rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 24px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--dark);
            border-color: var(--primary);
            transform: translateY(-4px);
        }

        .footer-bottom {
            margin-top: 50px;
            padding: 18px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 0.88rem;
            color: rgba(255, 255, 255, 0.55);
        }

        .footer-bottom strong {
            color: var(--primary);
            font-weight: 700;
        }

        .footer-bottom a {
            color: var(--primary);
            text-decoration: none;
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-yellow);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--dark);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* ===== WHATSAPP FLOAT ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 100px;
            right: 30px;
            left: unset;
            width: 55px;
            height: 55px;
            background: #25D366;
            color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-float:hover {
            color: var(--light);
            transform: scale(1.15);
        }

        /* ===== PHONE FLOAT ===== */
        .phone-float {
            position: fixed;
            bottom: 170px;
            right: 30px;
            left: unset;
            width: 55px;
            height: 55px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            text-decoration: none;
            box-shadow: 0 5px 25px rgba(255, 214, 10, 0.45);
            z-index: 999;
            transition: var(--transition);
        }

        .phone-float:hover {
            background: var(--dark);
            color: var(--primary);
            transform: scale(1.15);
        }

        /* ===== RESPONSIVE ===== */

        /* Large tablets / small laptops */
        @media (max-width: 1199px) {
            .hero h1 {
                font-size: clamp(2.2rem, 5vw, 4rem);
            }

            .booking-card {
                padding: 28px;
            }
        }

        /* Tablets */
        @media (max-width: 991px) {
            section {
                padding: 70px 0;
            }

            /* Navbar */
            .navbar {
                background: rgba(0, 8, 20, 0.97);
            }

            .navbar-collapse {
                background: var(--secondary);
                padding: 20px 15px;
                margin-top: 12px;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            }

            .navbar-nav .nav-link {
                margin: 4px 0;
                padding: 10px 12px !important;
                border-radius: 8px;
            }

            .navbar-nav .nav-link:hover {
                background: rgba(255, 214, 10, 0.1);
            }

            .navbar-nav .nav-link::after {
                display: none;
            }

            .btn-call-nav,
            .btn-booknow-nav {
                margin-left: 0 !important;
                margin-top: 6px;
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            /* Hero */
            .hero {
                background-attachment: scroll;
                padding-top: 100px;
                padding-bottom: 60px;
            }

            .hero p.lead {
                font-size: 1.05rem;
            }

            .hero-photo-card {
                margin-top: 22px;
            }

            .booking-card {
                margin-top: 40px;
            }

            /* Parallax */
            .parallax-stats {
                background-attachment: scroll;
            }

            /* About */
            .about-img-wrapper {
                margin-bottom: 55px;
            }

            .about-img-wrapper .experience-badge {
                bottom: -20px;
                right: 15px;
                padding: 18px 22px;
            }

            .about-img-wrapper .experience-badge .number {
                font-size: 2.2rem;
            }

            /* CTA */
            .cta-section .text-lg-end {
                text-align: center !important;
                margin-top: 25px;
            }

            /* Stats */
            .stat-box .stat-number {
                font-size: 3rem;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 30px 25px;
            }
        }

        /* Medium mobile */
        @media (max-width: 767px) {
            section {
                padding: 65px 0;
            }

            /* Hero */
            .hero {
                min-height: auto;
                padding: 110px 0 70px;
            }

            .hero h1 {
                font-size: clamp(2rem, 8vw, 3rem);
            }

            .hero p.lead {
                font-size: 1rem;
                max-width: 100%;
            }

            /* About badge: stay inside the image */
            .about-img-wrapper .experience-badge {
                bottom: -15px;
                right: 10px;
                padding: 15px 18px;
            }

            .about-img-wrapper .experience-badge .number {
                font-size: 2rem;
            }

            .about-img-wrapper .experience-badge .text {
                font-size: 0.75rem;
            }

            /* CTA phone button */
            .cta-phone {
                width: 100%;
                justify-content: center;
                font-size: 1.1rem;
                padding: 16px 28px;
            }

            /* Fleet */
            .fleet-img {
                height: 200px;
            }

            /* Steps */
            .step-card {
                padding: 25px 15px;
            }

            /* Process — remove vertical lift on mobile so stacked cards have equal gaps */
            .process-step--featured {
                transform: translateY(0) !important;
            }

            .process-step--featured:hover {
                transform: translateY(-6px) !important;
            }

            /* Contact cards */
            .contact-info-card {
                padding: 28px 18px;
            }

            /* Footer */
            footer {
                padding: 55px 0 25px;
            }

            .footer-bottom {
                margin-top: 35px;
                justify-content: center;
                text-align: center;
            }
        }

        /* Small mobile */
        @media (max-width: 575px) {
            section {
                padding: 55px 0;
            }

            /* Navbar */
            .navbar-brand {
                font-size: 1.5rem;
            }

            /* Hero */
            .hero {
                padding: 100px 0 60px;
            }

            .hero-badge {
                font-size: 0.78rem;
                padding: 6px 16px;
            }

            .hero-cta {
                flex-direction: column;
                gap: 12px;
            }

            .hero-cta .btn-primary-custom,
            .hero-cta .btn-outline-custom {
                width: 100%;
                justify-content: center;
                padding: 13px 28px;
            }

            /* Booking card */
            .booking-card {
                padding: 22px 18px;
            }

            .booking-card h3 {
                font-size: 1.3rem;
                margin-bottom: 18px;
            }

            /* Features strip */
            .features-strip {
                padding: 40px 0 !important;
            }

            .feature-item {
                flex-direction: column;
                text-align: center;
                padding: 15px 10px;
                border-radius: 12px;
                background: rgba(255, 255, 255, 0.05);
            }

            .feature-item i {
                font-size: 2rem;
            }

            .feature-item h5 {
                font-size: 0.95rem;
            }

            /* Services */
            .service-card {
                padding: 35px 22px;
            }

            .service-icon {
                width: 75px;
                height: 75px;
                font-size: 1.8rem;
            }

            .service-card h4 {
                font-size: 1.2rem;
            }

            /* Stats */
            .parallax-stats {
                padding: 70px 0;
            }

            .stat-box {
                padding: 15px 10px;
            }

            .stat-box .stat-number {
                font-size: 2.4rem;
            }

            .stat-box .stat-icon {
                font-size: 2.2rem;
                margin-bottom: 12px;
            }

            .stat-box .stat-label {
                font-size: 0.85rem;
                letter-spacing: 1px;
            }

            /* About */
            .about-img-wrapper {
                margin-bottom: 40px;
            }

            .about-img-wrapper .experience-badge {
                right: 0;
                bottom: -15px;
                padding: 12px 16px;
            }

            .about-img-wrapper .experience-badge .number {
                font-size: 1.8rem;
            }

            .about-content .check-item {
                gap: 12px;
                margin-bottom: 12px;
            }

            /* Fleet */
            .fleet-img {
                height: 185px;
            }

            .fleet-body {
                padding: 18px;
            }

            .fleet-body h4 {
                font-size: 1.15rem;
            }

            .fleet-price .price {
                font-size: 1.4rem;
            }

            /* Steps */
            .step-number {
                width: 65px;
                height: 65px;
                font-size: 1.7rem;
            }

            .step-icon {
                font-size: 2rem;
            }

            /* Testimonials */
            .testimonials-section::before {
                font-size: 18rem;
                right: 10px;
            }

            .testimonial-card {
                padding: 25px 20px;
            }

            /* CTA */
            .cta-section {
                padding: 60px 0;
            }

            .cta-section h2 {
                font-size: clamp(1.5rem, 6vw, 2.2rem);
            }

            .cta-phone {
                padding: 14px 22px;
                font-size: 1rem;
            }

            /* Contact */
            .contact-info-card {
                padding: 25px 15px;
            }

            .contact-info-card i {
                font-size: 2rem;
                margin-bottom: 14px;
            }

            /* Section typography */
            .section-title {
                font-size: clamp(1.7rem, 6vw, 2.4rem);
            }

            /* Floating buttons */
            .phone-float {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                bottom: 148px;
                right: 16px;
                left: unset;
            }

            .whatsapp-float {
                width: 44px;
                height: 44px;
                font-size: 1.2rem;
                bottom: 88px;
                right: 16px;
                left: unset;
            }

            .back-to-top {
                bottom: 32px;
                right: 16px;
                width: 40px;
                height: 40px;
                font-size: 0.95rem;
            }
        }

        /* Extra small phones */
        @media (max-width: 380px) {
            .navbar-brand {
                font-size: 1.3rem;
            }

            .booking-card {
                padding: 18px 14px;
            }

            .hero h1 {
                font-size: 1.9rem;
            }

            .cta-phone {
                font-size: 0.95rem;
                padding: 12px 18px;
            }

            .stat-box .stat-number {
                font-size: 2rem;
            }

            .fleet-img {
                height: 165px;
            }

            .testimonial-card {
                padding: 20px 16px;
            }

            .footer-brand {
                font-size: 1.6rem;
            }
        }

        /* ===== PAGE BANNER (for inner pages) ===== */
        .page-banner {
            min-height: 55vh;
            background: linear-gradient(135deg, rgba(0, 8, 20, 0.88) 0%, rgba(0, 29, 61, 0.78) 100%),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2000') center/cover no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            text-align: center;
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(255, 214, 10, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .page-banner .container {
            position: relative;
            z-index: 2;
        }

        .page-banner h1 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            margin-bottom: 15px;
            font-weight: 900;
        }

        .page-banner h1 .highlight {
            color: var(--primary);
        }

        .page-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto 20px;
        }

        .breadcrumb-custom {
            display: inline-flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            align-items: center;
        }

        .breadcrumb-custom a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-custom a:hover {
            color: var(--light);
        }

        .breadcrumb-custom i {
            font-size: 0.7rem;
            opacity: 0.6;
        }

        .breadcrumb-custom span {
            color: var(--light);
            opacity: 0.9;
        }

        @media (max-width: 767px) {
            .page-banner {
                min-height: 45vh;
                padding: 120px 0 60px;
                background-attachment: scroll;
            }
        }

        /* ===== NAVBAR BUTTONS ===== */
        .navbar-nav .btn-call-nav {
            background: transparent;
            color: var(--primary) !important;
            border: 2px solid var(--primary);
            padding: 9px 22px !important;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.92rem;
            font-family: var(--font-body);
            letter-spacing: 0.3px;
            margin-left: 10px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-nav .btn-call-nav:hover {
            background: var(--primary);
            color: var(--dark) !important;
            transform: translateY(-2px);
        }

        .navbar-nav .btn-booknow-nav {
            background: var(--primary);
            color: var(--dark) !important;
            border: 2px solid var(--primary);
            padding: 9px 22px !important;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.92rem;
            font-family: var(--font-body);
            letter-spacing: 0.3px;
            margin-left: 6px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .navbar-nav .btn-booknow-nav:hover {
            background: white;
            border-color: white;
            color: var(--dark) !important;
            transform: translateY(-2px);
        }

        /* ===== NAVBAR LOGO ===== */
        .navbar-brand {
            padding: 0;
        }

        .navbar-logo {
            height: 48px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }


        /* ===== HERO WITH BOOKING FORM ===== */
        .hero-booking {
            min-height: 100vh;
            background:
                linear-gradient(135deg, rgba(0, 8, 20, 0.92) 0%, rgba(0, 29, 61, 0.88) 60%, rgba(0, 53, 102, 0.82) 100%),
                repeating-linear-gradient(45deg,
                    rgba(255, 214, 10, 0.03) 0px,
                    rgba(255, 214, 10, 0.03) 1px,
                    transparent 1px,
                    transparent 60px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            color: var(--light);
            padding: 100px 0 60px;
        }

        .hero-booking::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 214, 10, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-booking::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 214, 10, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-booking .container {
            z-index: 2;
        }

        /* ===== HERO HEADING ===== */
        .hero-main-heading {
            font-family: var(--font-heading);
            font-size: clamp(2.8rem, 6.5vw, 4.8rem);
            font-weight: 900;
            color: var(--light);
            letter-spacing: -2px;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .hero-heading-highlight {
            color: var(--primary);
            display: inline-block;
            position: relative;
            text-shadow: 0 0 40px rgba(255, 214, 10, 0.45);
        }

        .hero-heading-highlight::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 2px;
            width: 100%;
            height: 8px;
            background: rgba(255, 214, 10, 0.22);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-heading-sub {
            display: block;
            font-family: var(--font-body);
            font-size: clamp(1rem, 2vw, 1.25rem);
            font-weight: 500;
            color: rgba(255, 255, 255, 0.55);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 10px;
        }

        /* ===== HERO BRAND / TAGLINE ===== */
        .hero-brand-name {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 900;
            color: var(--light);
            letter-spacing: -1px;
            margin-bottom: 6px;
            line-height: 1.1;
        }

        .hero-brand-name span {
            color: var(--primary);
        }

        .hero-tagline {
            font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 28px;
            max-width: 420px;
            line-height: 1.7;
        }

        /* ===== HERO CTA BUTTONS ===== */
        .btn-call-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--dark);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            transition: var(--transition);
            font-family: var(--font-body);
            border: 2px solid var(--primary);
            letter-spacing: 0.3px;
            box-shadow: 0 8px 30px rgba(255, 214, 10, 0.4);
            animation: callPulse 2.5s infinite;
        }

        @keyframes callPulse {

            0%,
            100% {
                box-shadow: 0 8px 30px rgba(255, 214, 10, 0.4);
            }

            50% {
                box-shadow: 0 8px 50px rgba(255, 214, 10, 0.7);
            }
        }

        .btn-call-hero:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 214, 10, 0.5);
        }

        .btn-whatsapp-hero {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: #fff;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: var(--transition);
            font-family: var(--font-body);
            border: 2px solid #25D366;
        }

        .btn-whatsapp-hero:hover {
            background: transparent;
            color: #25D366;
            transform: translateY(-3px);
        }

        .hero-cta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }

        /* ===== HERO TRUST BAR ===== */
        .hero-trust {
            display: grid;
            grid-template-columns: repeat(3, auto);
            justify-content: start;
            gap: 12px 28px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.83rem;
            white-space: nowrap;
        }

        .hero-trust-item i {
            color: var(--primary);
            font-size: 1rem;
        }

        /* ===== HERO BOOKING FORM CARD ===== */
        .hero-form-card {
            background: #fff;
            border-radius: 20px;
            padding: 22px 24px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            position: relative;
            z-index: 2;
        }

        .hero-form-card h3 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-form-card h3 i {
            color: var(--primary);
            font-size: 1.3rem;
        }

        .hero-form-card .form-label {
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.85rem;
            letter-spacing: 0.3px;
            margin-bottom: 3px;
        }

        .hero-form-card .form-control,
        .hero-form-card .form-select {
            border: 1.5px solid #e5e7eb;
            border-radius: 8px;
            padding: 7px 12px;
            font-size: 0.88rem;
            color: var(--dark);
            font-family: var(--font-body);
        }

        .hero-form-card .form-control:focus,
        .hero-form-card .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.2);
            outline: none;
        }

        .hero-form-card .form-control::placeholder {
            color: #b0b8c1;
        }

        /* ===== FORM LABEL ICONS ===== */
        .form-label i {
            color: var(--primary);
        }

        .return-label i {
            color: var(--primary);
        }

        /* ===== RETURN TRIP TOGGLE ===== */
        .return-toggle-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 4px;
        }

        .form-switch .form-check-input {
            width: 40px;
            height: 22px;
            cursor: pointer;
        }

        .form-switch .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .form-switch .form-check-input:focus {
            box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.2);
            border-color: var(--primary);
        }

        .return-label {
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.85rem;
        }

        .return-date-label {
            font-size: 0.8rem;
        }

        .return-input {
            font-size: 0.85rem;
        }

        #returnFields {
            display: none;
            background: #f9fafc;
            border-radius: 12px;
            padding: 14px;
            border: 1.5px dashed #e0e7ef;
        }

        #returnFields.show {
            display: block;
        }

        /* ===== PAYMENT METHOD ===== */
        .payment-section {
            background: #f8fafc;
            border: 1.5px solid #e0e7ef;
            border-radius: 10px;
            padding: 10px 12px;
        }

        .payment-label {
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 7px;
            display: block;
        }

        .payment-options {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }

        .payment-option {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .payment-option input[type="radio"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #adb5bd;
            border-radius: 50%;
            flex-shrink: 0;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            position: relative;
        }

        .payment-option input[type="radio"]:checked {
            border-color: var(--secondary);
            background: var(--secondary);
        }

        .payment-option input[type="radio"]:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
        }

        .payment-option span {
            font-size: 0.85rem;
            font-weight: 500;
            color: #333;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .payment-option span i {
            color: var(--secondary);
            font-size: 0.85rem;
            width: 16px;
        }

        /* ===== BOOK SUBMIT BUTTON ===== */
        .btn-book-submit {
            background: var(--secondary);
            color: var(--light);
            padding: 14px;
            border-radius: 50px;
            width: 100%;
            border: none;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: var(--transition);
            font-family: var(--font-body);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
        }

        .btn-book-submit:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 214, 10, 0.4);
        }

        /* ===== FEATURES STRIP ===== */
        .features-strip {
            padding: 50px 0;
        }

        /* ===== SERVICE CARDS ===== */
        .service-card-lp {
            background: var(--light);
            border-radius: 20px;
            padding: 32px 28px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid #edf2f4;
            position: relative;
            overflow: hidden;
        }

        .service-card-lp::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--primary);
            border-radius: 0 0 4px 0;
            transition: height 0.4s ease;
        }

        .service-card-lp:hover::before {
            height: 100%;
        }

        .service-card-lp:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 29, 61, 0.1);
            border-color: transparent;
        }

        .service-card-lp .svc-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 214, 10, 0.12);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .service-card-lp:hover .svc-icon {
            background: var(--primary);
        }

        .service-card-lp .svc-icon i {
            color: var(--secondary);
            font-size: 1.4rem;
            transition: var(--transition);
        }

        .service-card-lp:hover .svc-icon i {
            color: var(--dark);
        }

        .service-card-lp h4 {
            color: var(--secondary);
            font-size: 1.15rem;
            margin-bottom: 10px;
        }

        .service-card-lp p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ===== WHY CARDS ===== */
        .why-card {
            background: var(--light);
            border-radius: 20px;
            padding: 28px 24px;
            height: 100%;
            text-align: center;
            transition: var(--transition);
            border: 1px solid #edf2f4;
        }

        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 29, 61, 0.1);
            border-color: var(--primary);
        }

        .why-card .why-icon {
            width: 64px;
            height: 64px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            transition: var(--transition);
        }

        .why-card:hover .why-icon {
            background: var(--primary);
        }

        .why-card .why-icon i {
            color: var(--primary);
            font-size: 1.3rem;
            transition: var(--transition);
        }

        .why-card:hover .why-icon i {
            color: var(--dark);
        }

        .why-card h5 {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .why-card p {
            color: var(--gray);
            font-size: 0.85rem;
            margin: 0;
        }

        /* ===== STEPS ===== */
        .step-lp {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 24px;
            background: var(--light);
            border-radius: 20px;
            border: 1px solid #edf2f4;
            transition: var(--transition);
            height: 100%;
        }

        .step-lp:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 29, 61, 0.08);
        }

        .step-lp .step-num {
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            flex-shrink: 0;
            font-family: var(--font-heading);
        }

        .step-lp h5 {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 6px;
        }

        .step-lp p {
            color: var(--gray);
            font-size: 0.85rem;
            margin: 0;
        }

        /* ===== TESTIMONIALS ===== */
        .testi-card {
            background: var(--light);
            border-radius: 20px;
            padding: 28px 26px;
            height: 100%;
            border: 1px solid #edf2f4;
            transition: var(--transition);
        }

        .testi-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 29, 61, 0.1);
            border-color: var(--primary);
        }

        .testi-card .quote-icon {
            font-size: 3rem;
            line-height: 1;
            color: var(--primary);
            font-family: var(--font-heading);
            margin-bottom: 12px;
            display: block;
        }

        .testi-card .stars {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 0.85rem;
        }

        .testi-card p {
            color: #374151;
            font-size: 0.9rem;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .testi-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid #f3f4f6;
        }

        .testi-card .avatar {
            width: 44px;
            height: 44px;
            background: var(--secondary);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
        }

        .testi-card .author h6 {
            color: var(--secondary);
            font-size: 0.9rem;
            margin: 0;
        }

        .testi-card .author span {
            color: var(--gray);
            font-size: 0.78rem;
        }

        /* ===== CONTACT ===== */
        .contact-section {
            background: var(--gray-light);
        }

        .contact-box {
            background: var(--light);
            border-radius: 20px;
            padding: 32px 28px;
            text-align: center;
            border: 1px solid #edf2f4;
            transition: var(--transition);
            height: 100%;
        }

        .contact-box:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 29, 61, 0.1);
            border-color: var(--primary);
        }

        .contact-box .cbox-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }

        .contact-box h5 {
            color: var(--secondary);
            margin-bottom: 6px;
            font-size: 1rem;
        }

        .contact-box p {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 16px;
        }

        .contact-box a.cbox-link {
            display: inline-block;
            font-weight: 700;
            font-size: 1.05rem;
            text-decoration: none;
            color: var(--secondary);
            transition: color 0.3s;
        }

        .contact-box a.cbox-link:hover {
            color: var(--primary-dark);
        }

        /* Contact icon box variants */
        .cbox-icon-phone {
            background: rgba(255, 214, 10, 0.1);
        }

        .cbox-icon-whatsapp-bg {
            background: rgba(37, 211, 102, 0.12);
        }

        .cbox-icon-email {
            background: rgba(0, 29, 61, 0.08);
        }

        .cbox-icon-phone i {
            color: var(--secondary);
            font-size: 1.5rem;
        }

        .cbox-icon-whatsapp-bg i {
            color: #25D366;
            font-size: 1.6rem;
        }

        .cbox-icon-email i {
            color: var(--secondary);
            font-size: 1.4rem;
        }

        /* ===== SECTION UTILITIES ===== */
        .lp-section {
            padding: 80px 0;
        }

        .lp-section-dark {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
        }

        .section-bg-light {
            background: var(--gray-light);
        }

        .lp-label {
            display: inline-block;
            background: rgba(255, 214, 10, 0.12);
            color: var(--primary-dark);
            border: 1px solid rgba(255, 214, 10, 0.3);
            padding: 5px 18px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .lp-label-light {
            background: rgba(255, 214, 10, 0.15);
            color: var(--primary);
            border-color: rgba(255, 214, 10, 0.4);
        }

        .lp-title {
            font-size: clamp(1.7rem, 3.5vw, 2.4rem);
            color: var(--secondary);
            margin-bottom: 14px;
        }

        .lp-title-light {
            color: var(--light);
        }

        .lp-sub {
            color: var(--gray);
            font-size: 1rem;
            max-width: 560px;
            margin: 0 auto;
        }

        .lp-sub-light {
            color: rgba(255, 255, 255, 0.65);
        }

        /* ===== SIMPLE PROCESS SECTION ===== */
        .process-section {
            padding: 90px 0;
            background: var(--primary);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background: rgba(0, 0, 0, 0.06);
            border-radius: 50%;
            pointer-events: none;
        }

        .process-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 250px;
            height: 250px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 50%;
            pointer-events: none;
        }

        .process-section .lp-label {
            background: rgba(0, 0, 0, 0.1);
            color: var(--dark);
            border-color: rgba(0, 0, 0, 0.15);
        }

        .process-section .lp-title {
            color: var(--dark);
        }

        .process-section .lp-sub {
            color: rgba(0, 8, 20, 0.65);
        }

        .process-step {
            text-align: center;
            padding: 40px 28px;
            background: var(--light);
            border-radius: 20px;
            border: none;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: var(--transition);
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
        }

        .process-step--featured {
            background: var(--secondary);
            transform: translateY(-12px);
            box-shadow: 0 24px 60px rgba(0, 29, 61, 0.35);
        }

        .process-step--featured:hover {
            transform: translateY(-18px);
        }

        .process-step--featured h5 {
            color: var(--primary);
        }

        .process-step--featured p {
            color: rgba(255, 255, 255, 0.65);
        }

        .process-icon-wrap {
            position: relative;
            width: 72px;
            height: 72px;
            background: rgba(255, 214, 10, 0.12);
            border-radius: 50%;
            margin: 0 auto 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-icon-wrap i {
            font-size: 1.8rem;
            color: var(--secondary);
        }

        .process-step--featured .process-icon-wrap {
            background: rgba(255, 214, 10, 0.15);
        }

        .process-step--featured .process-icon-wrap i {
            color: var(--primary);
        }

        .process-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 26px;
            height: 26px;
            background: var(--primary);
            color: var(--dark);
            border-radius: 50%;
            font-size: 0.65rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-body);
        }

        .process-step--featured .process-badge {
            background: var(--primary);
            color: var(--dark);
        }

        .process-step h5 {
            color: var(--secondary);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .process-step p {
            color: var(--gray);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }

        /* Arrow connectors between process steps on desktop */
        .process-section .row {
            position: relative;
        }

        .process-section .col-md-4:not(:last-child)::after {
            content: '\f054';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            right: -14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            color: var(--primary);
            z-index: 2;
        }

        @media (max-width: 767px) {
            .process-section .col-md-4:not(:last-child)::after {
                display: none;
            }
        }

        .process-section .btn-hero-primary {
            background: var(--secondary);
            color: var(--light);
            border-color: var(--secondary);
        }

        .process-section .btn-hero-primary:hover {
            background: transparent;
            color: var(--secondary);
        }

        /* ===== HOW IT WORKS CTA ===== */
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: var(--primary);
            color: var(--dark);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            font-family: var(--font-body);
            text-decoration: none;
            border: 2px solid var(--primary);
            transition: var(--transition);
        }

        .btn-hero-primary:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-2px);
        }

        /* ===== FOOTER ===== */
        .btn-book-footer {
            font-size: 0.9rem;
            padding: 12px 28px;
        }

        /* ===== HERO RESPONSIVE ===== */
        @media (max-width: 991px) {
            .hero-booking {
                padding: 90px 0 50px;
            }

            .hero-form-card {
                padding: 28px 22px;
            }

            .hero-brand-name {
                font-size: 2rem;
            }
        }

        @media (max-width: 575px) {
            .hero-form-card {
                padding: 22px 16px;
                border-radius: 20px;
            }

            .hero-cta-row {
                gap: 10px;
            }

            .btn-call-hero,
            .btn-whatsapp-hero {
                padding: 12px 22px;
                font-size: 0.95rem;
            }

            /* Trust items: 2 columns on mobile */
            .hero-trust {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px 16px;
            }

            .hero-trust-item {
                white-space: normal;
                font-size: 0.78rem;
            }

            /* Booking form: stack col-6 fields to full width on tiny screens */
            .hero-form-card .col-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
.fas.fa-phone-alt {
    transform: rotate(90deg);
}