/* Modern Design System & CSS Variables */
        :root {
            --primary: #0F172A;
            --primary-accent: #1E293B;
            --accent: #FF5722;
            --accent-hover: #E64A19;
            --text-main: #334155;
            --text-muted: #64748B;
            --bg-light: #F8FAFC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-main);
            background-color: var(--bg-light);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Top Notification Bar */
        .top-bar {
            background-color: var(--primary);
            color: var(--white);
            padding: 10px 5%;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .top-bar .info {
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .top-bar .links {
            display: flex;
            gap: 20px;
        }
        .top-bar .links a {
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s;
        }
        .top-bar .links a.whatsapp {
            color: #25D366;
            font-weight: 600;
        }

        /* Header / Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .navbar .logo img {
            max-height: 50px;
            width: auto;
        }
        .navbar .menu {
            display: flex;
            gap: 30px;
        }
        .navbar .menu a {
            color: var(--primary);
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
        }
        .navbar .menu a:hover {
            color: var(--accent);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }
        .menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            overflow: hidden;
        }

        /* Direct Hero Background Image Styling */
        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        /* Hero Dark Overlay */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.75);
            z-index: 2;
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            max-width: 850px;
            position: relative;
            z-index: 3;
        }
        .hero-content h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -1px;
        }
        .hero-content p {
            font-size: 18px;
            margin-bottom: 35px;
            color: #E2E8F0;
            font-weight: 400;
        }
        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--accent);
            color: var(--white);
            padding: 16px 36px;
            font-weight: 700;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
            transition: all 0.3s ease;
        }
        .hero-btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Common Section Layouts */
        .section-padding {
            padding: 80px 5%;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-size: 34px;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
        }
        .section-header .sub-text {
            color: var(--text-muted);
            font-size: 16px;
        }
        .section-divider {
            width: 50px;
            height: 4px;
            background-color: var(--accent);
            margin: 12px auto 0 auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-section {
            background-color: var(--white);
        }
        .about-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        .about-container p {
            font-size: 17px;
            color: var(--text-main);
            line-height: 1.8;
        }

        /* Services Section */
        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .service-card {
            background-color: var(--white);
            padding: 35px 30px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid #E2E8F0;
            transition: all 0.3s ease;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }
        .service-card .icon {
            width: 60px;
            height: 60px;
            background-color: #FFF3E0;
            color: var(--accent);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
        }
        .service-card p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Fleet Section */
        .fleet-section {
            background-color: var(--bg-light);
        }
        .fleet-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
        }
        .fleet-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid #E2E8F0;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }
        .fleet-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        .fleet-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .fleet-card-content {
            padding: 25px;
        }
        .fleet-card-content h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: 700;
        }
        .fleet-card-content p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
        }
        .fleet-card-content ul.premium-specs {
            list-style: none;
            padding-left: 0;
            font-size: 14px;
        }
        .fleet-card-content ul.premium-specs li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-main);
        }
        .fleet-card-content ul.premium-specs .spec-icon {
            color: var(--accent);
            font-size: 15px;
            width: 20px;
        }
        .fleet-actions {
            padding: 0 25px 25px 25px;
            display: flex;
            gap: 12px;
        }
        .fleet-btn {
            flex: 1;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: opacity 0.3s;
        }
        .btn-call {
            background-color: var(--primary);
            color: var(--white);
        }
        .btn-whatsapp {
            background-color: #25D366;
            color: var(--white);
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--white);
        }
        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 20px;
            padding: 20px;
            border-radius: var(--radius-md);
            border: 1px solid #E2E8F0;
            background-color: var(--bg-light);
        }
        .faq-item h3 {
            font-size: 17px;
            color: var(--primary);
            margin-bottom: 8px;
            font-weight: 700;
        }
        .faq-item p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Footer */
        .footer {
            background-color: var(--primary);
            color: #94A3B8;
            padding: 60px 5% 30px 5%;
            font-size: 14px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-col h3 {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .footer-col h3 span {
            color: var(--accent);
        }
        .footer-col p {
            line-height: 1.6;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul a {
            transition: color 0.3s;
        }
        .footer-col ul a:hover {
            color: var(--white);
        }
        .footer-hr {
            border: 0;
            border-top: 1px solid var(--primary-accent);
            margin: 40px 0 25px 0;
        }
        .footer-legal-links {
            text-align: center;
            margin-bottom: 15px;
        }
        .footer-legal-links a {
            color: #94A3B8;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .footer-legal-links a:hover {
            color: var(--accent);
        }
        .footer-copy {
            text-align: center;
            color: #64748B;
        }

        /* Right Floating Bar */
        .floating-action-bar {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
        }
        .floating-btn {
            display: flex;
            align-items: center;
            color: var(--white);
            font-weight: 600;
            font-size: 13px;
            padding: 12px 16px;
            border-radius: 30px 0 0 30px;
            box-shadow: -2px 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            transform: translateX(calc(100% - 48px));
        }
        .floating-btn:hover {
            transform: translateX(0);
        }
        .floating-btn .btn-icon {
            font-size: 16px;
            width: 20px;
            margin-right: 12px;
        }
        .floating-btn.btn-call { background-color: var(--primary); }
        .floating-btn.btn-wa { background-color: #25D366; }
        .floating-btn.btn-enquiry { background-color: var(--accent); }

        /* Mobile Layout Modifications */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .navbar .menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: var(--shadow-md);
                padding: 20px;
                gap: 15px;
            }
            .navbar .menu.active {
                display: flex;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .section-header h2 {
                font-size: 26px;
            }
        }
   