
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        :root {
            --primary: #feba01;
            --primary-dark: #feba01;
            --text: #000000;
            --gray: #6b7280;
            --light: #f5f7f8;
            --white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --radius: 18px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #fff;
            color: var(--text);
            overflow-x: hidden;
        }

        img {
            width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: min(1200px, 92%);
            margin: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 26px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        section {
            padding: 80px 0;
        }

        .section-tag {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .section-desc {
            color: var(--gray);
            line-height: 1.8;
            max-width: 600px;
        }

        /* HEADER */

        header {
            position: sticky;
            top: 0;
            z-index: 999;
            background: #fff;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .navbar {
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 28px;
            font-weight: 800;
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-links a {
            font-weight: 600;
            color: #1f2937;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .contact-box {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 700;
        }

        .contact-box i {
            color: var(--primary);
            font-size: 22px;
        }

        .menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* HERO */

        .hero {
            background: linear-gradient(to right, #f5f8f7, #ffffff);
            padding: 80px 0 150px;
            position: relative;
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 72px;
            line-height: 0.95;
            margin: 18px 0;
            font-weight: 900;
        }

        .hero-content h1 span {
            color: var(--primary);
        }

        .hero-content p {
            color: var(--gray);
            line-height: 1.9;
            font-size: 17px;
            margin-bottom: 26px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 25px;
        }

        .hero-features div {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
        }

        .hero-features i {
            color: var(--primary);
            background: #dff6ef;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: grid;
            place-items: center;
        }

        .hero-image img {
            filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.18));
        }

        .booking-card {
            position: absolute;
            right: 7%;
            top: 50px;
            background: #fff;
            width: 370px;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .booking-card h3 {
            font-size: 23px;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 15px 16px;
            border: 1px solid #d7dce0;
            border-radius: 12px;
            font-size: 15px;
            outline: none;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(15, 123, 97, 0.12);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* INFO */

        .info-strip {
            margin-top: -20px;
            position: relative;
            z-index: 3;
        }

        .info-wrap {
            background: #fff;
            border-radius: 22px;
            padding: 35px;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .info-item {
            display: flex;
            gap: 15px;
        }

        .info-item i {
            font-size: 28px;
            color: var(--primary);
        }

        .info-item h4 {
            margin-bottom: 7px;
        }

        .info-item p {
            color: var(--gray);
            line-height: 1.6;
            font-size: 14px;
        }

        /* FLEET */

        .fleet-top {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }

        .fleet-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .fleet-card {
            background: #fff;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: 0.4s;
        }

        .fleet-card:hover {
            transform: translateY(-8px);
        }

        .fleet-card img {
            height: 230px;
            object-fit: cover;
        }

        .fleet-content {
            padding: 24px;
        }

        .fleet-content h3 {
            margin-bottom: 15px;
            font-size: 22px;
        }

        .fleet-meta {
            display: flex;
            gap: 16px;
            color: var(--gray);
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .fleet-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

        .price {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
        }

        .price span {
            font-size: 14px;
            color: var(--gray);
            font-weight: 500;
        }

        /* WHY */

        .why-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            background: #f6faf8;
            padding: 40px;
            border-radius: 26px;
        }

        .why-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }

        .why-item {
            display: flex;
            gap: 14px;
        }

        .why-item i {
            width: 54px;
            height: 54px;
            background: #dff6ef;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: var(--primary);
            font-size: 22px;
            flex-shrink: 0;
        }

        .why-item p {
            color: var(--gray);
            margin-top: 7px;
            line-height: 1.6;
        }

        /* STEPS */

        .steps {
            text-align: center;
        }

        .steps-grid {
            margin-top: 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .step-card {
            position: relative;
        }

        .step-icon {
            width: 90px;
            height: 90px;
            margin: auto auto 22px;
            border-radius: 50%;
            background: #dff6ef;
            display: grid;
            place-items: center;
            font-size: 34px;
            color: var(--primary);
            position: relative;
        }

        .step-number {
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: #000000;
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 13px;
        }

        .step-card p {
            color: var(--gray);
            margin-top: 10px;
            line-height: 1.6;
        }

        /* SERVICES */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card img {
            height: 170px;
            object-fit: cover;
        }

        .service-content {
            padding: 20px;
            text-align: center;
        }

        .service-content p {
            color: var(--gray);
            line-height: 1.6;
            margin-top: 10px;
            font-size: 14px;
        }

        .quote-box {
            margin-top: 45px;
            background: linear-gradient(135deg, #f6faf8, #eef7f3);
            border-radius: 24px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .quote-box img {
            max-width: 260px;
        }

        .quote-box p {
            color: var(--gray);
            margin-top: 8px;
        }

        /* TESTIMONIAL */

        .testimonial-section {
            background: #fafafa;
        }

        .testimonial-wrap {
            max-width: 900px;
            margin: auto;
            text-align: center;
            position: relative;
        }

        .testimonial-card {
            background: #fff;
            border-radius: 26px;
            padding: 50px;
            box-shadow: var(--shadow);
        }

        .testimonial-card img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            margin: 20px auto;
        }

        .testimonial-card p {
            color: var(--gray);
            line-height: 1.9;
            font-size: 18px;
            max-width: 700px;
            margin: auto;
        }

        .stars {
            color: #f5b301;
            margin: 22px 0 12px;
            font-size: 18px;
        }

        .slider-controls {
            margin-top: 25px;
            display: flex;
            justify-content: center;
            gap: 14px;
        }

        .slider-btn {
            width: 46px;
            height: 46px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            background: #fff;
            box-shadow: var(--shadow);
            font-size: 18px;
        }

        /* FAQ */

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .faq-item {
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            overflow: hidden;
            background: #fff;
        }

        .faq-question {
            padding: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: var(--gray);
            line-height: 1.8;
            padding: 0 22px;
        }

        .faq-item.active .faq-answer {
            max-height: 150px;
            padding-bottom: 22px;
        }

        /* FOOTER */

        footer {
            background: #081019;
            color: #fff;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-grid p {
            color: #cbd5e1;
            line-height: 1.8;
            margin-top: 15px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 18px;
            color: #cbd5e1;
        }

        .socials {
            display: flex;
            gap: 14px;
            margin-top: 22px;
        }

        .socials a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: grid;
            place-items: center;
            transition: 0.3s;
        }

        .socials a:hover {
            background: var(--primary);
        }

        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            color: #cbd5e1;
        }

        /* MODAL */

        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s ease;
            z-index: 9999;
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-box {
            width: 100%;
            max-width: 560px;
            background: #fff;
            border-radius: 26px;
            padding: 36px;
            position: relative;
            transform: translateY(40px);
            transition: 0.35s;
        }

        .modal.active .modal-box {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 42px;
            height: 42px;
            border: none;
            background: #f3f4f6;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
        }

        .modal-box h2 {
            margin-bottom: 10px;
            font-size: 32px;
        }

        .modal-box p {
            color: var(--gray);
            margin-bottom: 28px;
        }

        .success-msg {
            margin-top: 18px;
            color: var(--primary);
            font-weight: 700;
            display: none;
        }

        /* RESPONSIVE */

        @media(max-width:1100px) {

            .hero-grid,
            .why-wrap,
            .footer-grid,
            .services-grid,
            .steps-grid,
            .fleet-cards,
            .faq-grid,
            .info-wrap {
                grid-template-columns: repeat(2, 1fr);
            }

            .booking-card {
                position: static;
                width: 100%;
                margin-top: 40px;
            }

            .hero-content h1 {
                font-size: 58px;
            }
        }

        @media(max-width:768px) {
            .menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 90px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 90px);
                background: #fff;
                flex-direction: column;
                padding: 40px 25px;
                align-items: flex-start;
                transition: 0.3s;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
            }

            .nav-links.active {
                right: 0;
            }

            .contact-box {
                display: none;
            }

            .hero-grid,
            .why-wrap,
            .footer-grid,
            .services-grid,
            .steps-grid,
            .fleet-cards,
            .faq-grid,
            .info-wrap,
            .hero-features,
            .booking-grid {
                grid-template-columns: 1fr;
            }

            .fleet-top,
            .quote-box,
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-content h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 34px;
            }

            .hero {
                padding-top: 50px;
            }

            section {
                padding: 65px 0;
            }

            .modal-box {
                padding: 26px;
            }
            .why-points {
    grid-template-columns: repeat(1, 1fr);

}

        }
