  :root {
            --primary-navy: #0b2240;
            --secondary-blue: #16365c;
            --accent-yellow: #f1b815;
            --whatsapp-green: #00a859;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        h1, h2, h3, h4, h5, h6 {
             font-family: 'Oswald', sans-serif;
        }

        body {
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header / Navbar */
        header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 24px;
            color: var(--primary-navy);
            text-decoration: none;
        }

        .logo span {
            color: var(--accent-yellow);
        }

        .logo-icon {
            color: var(--accent-yellow);
            font-size: 28px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav ul li a:hover, nav ul li a.active {
            color: #007bff;
        }

        .nav-phone {
            background: var(--primary-navy);
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Hero Section */
        .hero {
            padding: 60px 0;
            position: relative;
            overflow: hidden;
            background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
      min-height: 70vh;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
        }

        .hero-content h1 {
            font-size: 42px;
            color: var(--primary-navy);
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-content h2 {
           font-size: 42px;
    color: var(--primary-navy);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
        }

        .services-tags {
            font-weight: 500;
            margin-bottom: 20px;
            color: var(--primary-navy);
            font-size: 14px;
        }

        .hero-desc {
            color: var(--text-dark);
            margin-bottom: 30px;
            font-size: 14px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
        }

        .btn-navy {
            background: var(--primary-navy);
            color: #fff;
        }

        .btn-green {
            background: var(--whatsapp-green);
            color: #fff;
        }

        .hero-image img {
            width: 100%;
            max-width: 600px;
            height: auto;
            object-fit: contain;
        }

        /* Booking Form */
        .booking-section {
            margin-top: -40px;
            position: relative;
            z-index: 10;
        }

        .booking-card {
            background: var(--primary-navy);
            padding: 25px;
            border-radius: 8px;
            color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .booking-card h3 {
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 18px;
        }

        .booking-card h3 span {
            color: var(--accent-yellow);
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 15px;
            align-items: end;
        }

        .form-group {
            position: relative;
        }

        .form-group i {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 12px 12px 35px;
            border: none;
            border-radius: 4px;
            background: #fff;
            color: var(--text-dark);
            font-size: 14px;
            outline: none;
        }

        .btn-fare {
            background: var(--accent-yellow);
            color: var(--primary-navy);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            height: 46px;
            font-size: 15px;
        }

        /* Section Typography */
        .section-title {
            text-align: center;
            font-size: 28px;
            color: var(--primary-navy);
            margin: 60px 0 40px;
            position: relative;
            font-weight: 700;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: var(--accent-yellow);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .service-card {
            background: #fff;
            border: 1px solid #eef2f5;
            padding: 20px 15px;
            border-radius: 6px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

        .service-icon-box {
            width: 50px;
            height: 50px;
            background: #fffdf0;
            border: 2px solid var(--accent-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }

        .service-icon-box i {
            color: #d49b00;
            font-size: 20px;
        }

        .service-card h4 {
            font-size: 14px;
            color: var(--primary-navy);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-card p {
            font-size: 11px;
            color: var(--text-light);
            line-height: 1.4;
        }

        /* Fleet Section */
        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .fleet-card {
            border: 1px solid #eef2f5;
            border-radius: 6px;
            padding: 20px;
            background: #fff;
        }

        .fleet-img {
            width: 100%;
            height: 120px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .fleet-card h4 {
            font-size: 16px;
            color: var(--primary-navy);
            margin-bottom: 5px;
        }

        .fleet-meta {
            font-size: 12px;
            color: var(--accent-yellow);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .fleet-desc {
            font-size: 12px;
            color: var(--text-light);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: var(--primary-navy);
            color: #fff;
            padding: 50px 0;
            margin-top: 60px;
        }

        .why-title {
            text-align: center;
            font-size: 26px;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .why-title span {
            color: var(--accent-yellow);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 15px;
            text-align: center;
        }

        .feature-item i {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
        }

        .feature-item p {
            font-size: 11px;
            line-height: 1.3;
        }

        /* Routes Section */
        .routes-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .route-card {
            border: 1px solid #eef2f5;
            padding: 12px 15px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }

        .route-card i {
            color: var(--primary-navy);
        }

        /* Bottom CTA Banner */
        .bottom-banner {
            background: linear-gradient(rgba(11, 34, 64, 0.9), rgba(11, 34, 64, 0.9)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 40px 0;
            margin-top: 60px;
        }

        .banner-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .banner-text h3 {
            font-size: 22px;
            margin-bottom: 5px;
        }

        .banner-text h3 span {
            color: var(--accent-yellow);
        }

        .banner-text p {
            font-size: 13px;
            color: #ccc;
            max-width: 450px;
        }

        .banner-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-banner-call {
            background: var(--secondary-blue);
            color: #fff;
            border: 1px solid #3a5a80;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-banner-call span {
            display: block;
            font-size: 11px;
            color: #aaa;
        }

        .btn-banner-call strong {
            display: block;
            font-size: 14px;
        }

        .btn-banner-wp {
            background: var(--whatsapp-green);
            color: #fff;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-banner-wp span {
            display: block;
            font-size: 11px;
            color: #e0f2e9;
        }

        .btn-banner-wp strong {
            display: block;
            font-size: 14px;
        }

        .btn-banner-fare {
            background: var(--accent-yellow);
            color: var(--primary-navy);
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 13px;
        }

        /* Footer */
        footer {
            background: #ffffff;
            padding: 40px 0 20px;
            border-top: 1px solid #eee;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h5 {
            color: var(--primary-navy);
            font-size: 14px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: var(--text-light);
            font-size: 12px;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #007bff;
        }

        .contact-info li {
            font-size: 12px;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .contact-info i {
            color: var(--primary-navy);
        }

        .copyright {
            text-align: center;
            font-size: 11px;
            color: var(--text-light);
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-buttons { justify-content: center; }
            .booking-form { grid-template-columns: 1fr 1fr; }
            .btn-fare { grid-column: span 2; }
            .services-grid { grid-template-columns: repeat(3, 1fr); }
            .fleet-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(4, 1fr); }
            .routes-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 576px) {
            .booking-form { grid-template-columns: 1fr; }
            .btn-fare { grid-column: span 1; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .fleet-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .routes-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .banner-flex { flex-direction: column; align-items: stretch; }
            .nav-container { flex-direction: column; gap: 10px; }
            nav ul { flex-wrap: wrap; justify-content: center; }
        }