:root{
    /* LIGHT MODE */
    --bg-color: #ffffff;
    --text-color: #111111;
    --card-bg: #f5f5f5;
    --primary-color: #ff6b00;
}

body.dark-mode{
    /* DARK MODE */
    --bg-color: #000000;
    --text-color: #ffffff;
    --card-bg: #111111;
    --primary-color: #ff8c42;
}        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        
        body {
             background: var(--bg-color);
            color: #fff;
        }
        
        .navbar {
            width: 100%;
            background: #000;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
        }
        
        .nav-container {
            width: 95%;
            max-width: 1400px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo img {
            height: 55px;
            width: auto;
        }
        /* Menu */
        
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            position: relative;
            transition: .3s;
        }
        
        .nav-links a:hover {
            color: #ff7b00;
        }
        
        .nav-links a.active {
            color: #fff;
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 100%;
            height: 3px;
            background: #ff7b00;
            border-radius: 10px;
        }
        /* Right Section */
        
        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .phone-btn {
            color: #fff;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, .3);
            padding: 12px 18px;
            border-radius: 8px;
            font-weight: 600;
            transition: .3s;
        }
        
        .phone-btn:hover {
            border-color: #ff7b00;
        }
        
        .book-btn {
            background: #ff7b00;
            color: #fff;
            text-decoration: none;
            padding: 13px 22px;
            border-radius: 8px;
            font-weight: 600;
            transition: .3s;
        }
        
        .book-btn:hover {
            background: #e66d00;
        }
        
        .menu-toggle {
            display: none;
            color: #fff;
            font-size: 30px;
            cursor: pointer;
        }
        /* Mobile */
        
        @media(max-width:991px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 280px;
                height: 100vh;
                background: #111;
                flex-direction: column;
                align-items: flex-start;
                padding: 30px;
                gap: 22px;
                transition: .4s;
            }
            .nav-links.active {
                left: 0;
            }
            .nav-right {
                display: none;
            }
            .logo img {
                height: 45px;
            }
        }
        /* HERO */
        
        .hero {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        /* BG IMAGE */
        
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('../images/ezy-baneer-2.png') center/cover no-repeat;
            /* filter: brightness(0.5); */
            z-index: 1;
        }
        /* CONTAINER */
        
        .container {
            z-index: 2;
            padding: 0px 2%;
        }
        /* CONTENT */
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero-content h1 {
            font-size: 55px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
        }
        
        .hero-content span {
            color: #ff7a00;
        }
        
        .hero-content p {
            margin: 20px 0;
            color: #ccc;
            font-size: 16px;
        }
        /* BUTTONS */
        
        .hero-btns {
            display: flex;
            gap: 15px;
        }
        
        .btn {
            padding: 12px 22px;
            border: none;
            cursor: pointer;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .primary {
            background: #ff7a00;
            color: #fff;
        }
        
        .outline {
            border: 1px solid #fff;
            background: transparent;
            color: #fff;
        }
        /* FORM */
        /* .booking-form {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        background: #111;
        padding: 20px;
        border-radius: 12px;
        z-index: 3;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    } */
        
        .form-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .form-row input,
        .form-row select {
            flex: 1;
            min-width: 150px;
            padding: 10px;
            background: #1a1a1a;
            border: 1px solid #333;
            color: #fff;
            border-radius: 6px;
        }
        /* SEARCH BUTTON */
        
        .search-btn {
            background: #ff7a00;
            border: none;
            padding: 10px 20px;
            color: #fff;
            border-radius: 6px;
            cursor: pointer;
        }
        /* RESPONSIVE */
        
        @media(max-width:768px) {
            .hero-content {
                display: none;
            }
            .hero-bg {
                background: url('../images/eazygo-mob-12.png') center/cover no-repeat;
            }
            .hero {
                height: 84vh;
            }
            .hero-content h1 {
                font-size: 36px;
            }
            /* .booking-form {
            position: relative;
            bottom: 0;
            margin-top: 20px;
        } */
            .form-row {
                flex-direction: column;
            }
            .search-btn {
                width: 100%;
            }
        }
        
        .about-section {
            background: #000;
            padding: 60px 2%;
            position: relative;
            overflow: hidden;
        }
        
        .about-section::before {
            content: '';
            position: absolute;
            top: -150px;
            left: -150px;
            width: 350px;
            height: 350px;
            background: rgba(255, 136, 0, .08);
            border-radius: 50%;
            filter: blur(120px);
        }
        
        .about-container {
            max-width: 1300px;
            margin: auto;
            display: flex;
            align-items: center;
            gap: 70px;
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            display: block;
            border-radius: 20px;
            border: 1px solid rgba(255, 136, 0, .25);
            box-shadow: 0 0 40px rgba(255, 136, 0, .15);
        }
        
        .about-content {
            flex: 1;
        }
        
        .sub-title {
            color: #ff8800;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .about-content h2 {
            color: #fff;
            font-size: 35px;
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .about-content h2 span {
            color: #ff8800;
        }
        
        .about-content p {
            color: #bdbdbd;
            font-size: 17px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 35px;
        }
        
        .feature {
            color: #fff;
            background: #0d0d0d;
            border: 1px solid rgba(255, 136, 0, .15);
            padding: 15px;
            border-radius: 10px;
            transition: .3s;
        }
        
        .feature:hover {
            border-color: #ff8800;
        }
        
        .about-btn {
            display: inline-block;
            background: #ff8800;
            color: #fff;
            text-decoration: none;
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 600;
            transition: .3s;
        }
        
        .about-btn:hover {
            background: #ff8800;
        }
        
        @media(max-width:991px) {
            .about-container {
                flex-direction: column;
            }
            .about-content h2 {
                font-size: 40px;
            }
        }
        
        @media(max-width:768px) {
            .about-section {
                padding: 70px 20px;
            }
            .about-content h2 {
                font-size: 32px;
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .about-content p {
                font-size: 15px;
            }
            .about-btn {
                width: 100%;
                text-align: center;
            }
        }
        
        .footer {
            background: #050505;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 138, 0, .15);
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: -150px;
            right: -150px;
            width: 350px;
            height: 350px;
            background: rgba(255, 138, 0, .08);
            border-radius: 50%;
            filter: blur(80px);
        }
        
        .footer-container {
            max-width: 1400px;
            margin: auto;
            padding: 80px 5%;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 50px;
        }
        
        .footer-logo {
            width: 180px;
            margin-bottom: 20px;
        }
        
        .footer-about p {
            color: #b5b5b5;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .footer-col h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
        }
        
        .footer-col h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 45px;
            height: 3px;
            background: #ff8a00;
            border-radius: 20px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 14px;
        }
        
        .footer-col ul li a {
            color: #bdbdbd;
            text-decoration: none;
            transition: .3s;
        }
        
        .footer-col ul li a:hover {
            color: #ff8a00;
            padding-left: 6px;
        }
        
        .contact-info li {
            color: #bdbdbd;
            display: flex;
            gap: 12px;
            line-height: 1.6;
        }
        
        .contact-info i {
            color: #ff8a00;
            margin-top: 4px;
        }
        
        .footer-social {
            display: flex;
            gap: 12px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            border: 1px solid rgba(255, 138, 0, .3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ff8a00;
            text-decoration: none;
            transition: .3s;
        }
        
        .footer-social a:hover {
            background: #ff8a00;
            color: #fff;
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            text-align: center;
            padding: 22px;
        }
        
        .footer-bottom p {
            color: #9e9e9e;
            font-size: 14px;
        }
        
        @media(max-width:991px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media(max-width:768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 60px 20px;
            }
            .footer-logo {
                width: 150px;
            }
        }
        
        .fleet-section {
            background: #050505;
            padding: 30px 2%;
        }
        
        .fleetSwiper {
            position: relative;
            overflow: hidden;
        }
        
        .fleet-card {
            position: relative;
            background: #0d0d0d;
            border: 1px solid rgba(255, 136, 0, .15);
            border-radius: 15px;
            overflow: hidden;
        }
        
        .price-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: linear-gradient(135deg, #ff8a00, #ff6200);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 8px 14px;
            border-radius: 30px;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 138, 0, .35);
            letter-spacing: .3px;
        }
        
        .hot-badge {
            position: absolute;
            top: 5px;
            left: 5px;
            /* background: #ff3d00; */
            color: #fff;
            padding: 7px 14px;
            /* border-radius: 30px; */
            font-size: 22px;
            font-weight: 700;
            z-index: 10;
            /* box-shadow: 0 4px 15px rgba(255, 61, 0, .35); */
            animation: hotPulse 1.5s infinite;
        }
        
        @keyframes hotPulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.08);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .fleet-card img {
            width: 85%;
            height: 220px;
            display: flex;
            object-fit: contain;
            margin: 0px auto;
        }
        
        .fleet-card h3 {
            color: #fff;
            padding: 2px 20px 20px 20px;
            margin: 0;
        }
        
        .fleet-card a {
            display: block;
            margin: 0 20px 20px;
            text-align: center;
            padding: 12px;
            border: 1px solid #ff8800;
            color: #ff8800;
            text-decoration: none;
            border-radius: 8px;
        }
        
        .view-all-card {
            height: 100%;
            min-height: 324px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: #0d0d0d;
            border: 2px dashed #ff8800;
            border-radius: 15px;
        }
        
        .view-all-card h3 {
            color: #fff;
            margin-bottom: 20px;
        }
        
        .view-all-card a {
            background: #ff8800;
            color: #fff;
            text-decoration: none;
            padding: 14px 30px;
            border-radius: 8px;
        }
        
        .fleet-prev,
        .fleet-next {
            width: 40px;
            height: 40px;
            background: #ff8a00;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            font-size: 15px;
        }
        
        .fleet-prev {
            left: 5px;
        }
        
        .fleet-next {
            right: 5px;
        }
        
        .fleet-prev.swiper-button-disabled,
        .fleet-next.swiper-button-disabled {
            opacity: 0;
            pointer-events: none;
        }
        
        @media(max-width:767px) {
            .price-badge {
                position: absolute;
                top: 0px;
                right: 0px;
                background: linear-gradient(135deg, #ff8a00, #ff6200);
                color: #fff;
                font-size: 12px;
                font-weight: 700;
                padding: 5px 7px;
                border-radius: 0px;
                border-bottom-left-radius: 10px!important;
                z-index: 2;
                box-shadow: 0 5px 15px rgba(255, 138, 0, .35);
                letter-spacing: .3px;
            }
            .view-all-card a {
                background: #ff8800;
                color: #fff;
                text-decoration: none;
                width: 82%;
                padding: 10px 4px;
                text-align: center;
                border-radius: 8px;
            }
            .fleet-card img {
                height: 120px;
            }
            .fleet-card h3 {
                font-size: 15px;
                padding: 12px;
            }
            .fleet-card a {
                margin: 0 12px 12px;
                padding: 10px;
                font-size: 13px;
            }
            .view-all-card {
                min-height: 206px;
            }
            .view-all-card h3 {
                font-size: 16px;
                text-align: center;
                padding: 0 10px;
            }
        }
        
        .faq-section {
            padding: 50px 2%;
            background: #0b0b0b;
        }
        
        .faq-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        .faq-header span {
            color: #ff8a00;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .faq-header h2 {
            color: #fff;
            font-size: 42px;
            margin: 15px 0;
            font-weight: 700;
        }
        
        .faq-header p {
            color: #bdbdbd;
            line-height: 1.8;
        }
        
        .faq-container {
            /* max-width: 900px; */
            margin: auto;
        }
        
        .faq-item {
            background: #111;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: .3s;
        }
        
        .faq-item.active {
            border-color: #ff8a00;
        }
        
        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: #fff;
            padding: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            text-align: left;
        }
        
        .faq-question span {
            color: #ff8a00;
            font-size: 24px;
            transition: .3s;
        }
        
        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
        }
        
        .faq-answer p {
            padding: 0 22px 22px;
            color: #bdbdbd;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 250px;
        }
        
        @media(max-width:768px) {
            .faq-header h2 {
                font-size: 30px;
            }
            .faq-question {
                font-size: 16px;
                padding: 18px;
            }
        }