:root {
            --primary: #d97706;
            --primary-dark: #b45309;
            --primary-light: #fbbf24;
            --navy: #0f172a;
            --navy-light: #1e293b;
            --navy-lighter: #334155;
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --success: #10b981;
            --danger: #ef4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            line-height: 1.6;
            overflow-x: hidden;
        }


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--navy);
            color: var(--gray-300);
            padding: 10px 0;
            font-size: 0.85rem;
        }

        .box {
            width: 100%;
            max-width: 1280px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left,
        .top-bar-right {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .top-bar a {
            color: var(--gray-300);
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--primary-light);
        }

        .top-bar i {
            color: var(--primary);
            margin-right: 6px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
        }

        .logo-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: 1px;
        }


        .logo-text span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--gray-700);
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white !important;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
        }

        .nav-cta::after {
            display: none !important;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--navy);
            cursor: pointer;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a1a2e 100%);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.25;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0.4) 100%);
        }

        .hero .container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(217, 119, 6, 0.15);
            border: 1px solid rgba(217, 119, 6, 0.3);
            color: var(--primary-light);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-badge i {
            color: var(--primary);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-300);
            margin-bottom: 36px;
            max-width: 520px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 48px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(217, 119, 6, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-400);
            margin-top: 4px;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: 16px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .hero-floating-card {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: white;
            padding: 20px 28px;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .floating-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
        }

        .floating-text h4 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .floating-text p {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--gray-50);
            padding: 40px 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .trust-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .trust-item i {
            font-size: 1.8rem;
            color: var(--primary);
        }

        .trust-item h4 {
            font-size: 0.95rem;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .trust-item p {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        /* ===== SECTION HEADING ===== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(217, 119, 6, 0.1);
            color: var(--primary);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--navy);
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--gray-500);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 100px 0;
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            padding: 40px 32px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--gray-500);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* ===== WHY CHOOSE US ===== */
        .why-us {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-us .section-header h2 {
            color: white;
        }

        .why-us .section-header p {
            color: var(--gray-300);
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .why-us-image {
            position: relative;
        }

        .why-us-image img {
            border-radius: 16px;
            width: 100%;
            height: 450px;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .why-us-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .feature-item {
            display: flex;
            gap: 16px;
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: rgba(217, 119, 6, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-light);
            font-size: 1.3rem;
        }

        .feature-item h4 {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 6px;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--gray-300);
            line-height: 1.6;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            padding: 100px 0;
            background: var(--gray-50);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12%;
            right: 12%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            opacity: 0.3;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 24px;
            box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
        }

        .step-card h3 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .step-card p {
            color: var(--gray-500);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ===== FLEET SECTION ===== */
        .fleet {
            padding: 100px 0;
            background: var(--white);
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .fleet-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 320px;
        }

        .fleet-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .fleet-card:hover img {
            transform: scale(1.1);
        }

        .fleet-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px 20px;
            background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
            color: white;
        }

        .fleet-overlay h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .fleet-overlay p {
            font-size: 0.85rem;
            color: var(--gray-300);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: white;
        }

        .testimonials .section-header h2 {
            color: white;
        }

        .testimonials .section-header p {
            color: var(--gray-300);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 36px 30px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .testimonial-stars {
            color: var(--primary-light);
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--gray-200);
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .author-info h4 {
            font-size: 1rem;
            color: white;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--gray-400);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--primary-dark);
            padding: 18px 44px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 100px 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 2rem;
            color: var(--navy);
            margin-bottom: 20px;
        }

        .contact-info>p {
            color: var(--gray-500);
            margin-bottom: 36px;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-item i {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            min-width: 48px;
        }

        .contact-item h4 {
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .contact-item p {
            color: var(--gray-500);
            font-size: 0.95rem;
        }

        .contact-form {
            background: var(--gray-50);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--gray-800);
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(217, 119, 6, 0.4);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--navy);
            color: var(--gray-300);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid var(--navy-lighter);
        }

        .footer-brand .logo-text {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 16px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 24px;
            color: var(--gray-400);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--navy-lighter);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1rem;
            color: white;
            margin-bottom: 24px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--gray-400);
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--primary-light);
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(217, 119, 6, 0.4);
            z-index: 999;
            border: none;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {

            .row {
                flex-direction: column;
            }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-subtitle {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                display: none;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .why-us-image {
                display: none;
            }

            .steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps-grid::before {
                display: none;
            }

            .fleet-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .steps-grid {
                grid-template-columns: 1fr;
            }

            .fleet-grid {
                grid-template-columns: 1fr;
            }

            .why-us-features {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background: white;
            list-style: none;
            padding: 10px 0;
            min-width: 180px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }

        .dropdown-menu.show {
            display: block !important;
        }

        .dropdown-menu li {
            padding: 10px 20px;
        }

        .dropdown-menu li a {
            color: black;
            text-decoration: none;
        }

        .dropdown-menu li:hover {
            background: #f5f5f5;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        */ .animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .btn:hover {
            background-color: orange;
            cursor: pointer;
        }

        .btn {
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: orange;
        }

        .email-link,
        .phone-link {
            color: #666363;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;

        }


        .email-link:hover,
        .phone-link:hover {
            color: #e65c00 !important;
            text-decoration: underline !important;
            ;
        }


        @media (max-width: 768px) {

            /* 1. LOGO & TEXT FIX */
            nav img,
            .navbar-brand img,
            [class*="logo"] img {
                width: 100% !important;
                height: auto !important;
                max-height: 50px !important;
                object-fit: contain !important;
                display: block !important;
                margin: 0 !important;
            }

            .navbar-brand,
            [class*="logo-container"],
            .logo,
            nav .logo-box {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                justify-content: flex-start !important;
                gap: 8px !important;
                white-space: nowrap !important;
            }

            .navbar-brand h1,
            .navbar-brand span,
            [class*="logo"] h1,
            [class*="logo"] span,
            .logo-text {
                font-size: 1.55rem !important;
                font-weight: bold !important;
                display: inline-block !important;
                white-space: nowrap !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            /* 2. SPACING & LINKS FIX (Compact layout taaki click aasan ho) */
            .nav-links,
            nav ul {
                gap: 2px !important;
                padding-top: 5px !important;
                padding-bottom: 5px !important;
            }

            .nav-links li {
                margin: 0 !important;
                padding: 0 !important;
                width: 100% !important;
            }

            .nav-links a,
            .dropdown-toggle {
                padding-top: 8px !important;
                padding-bottom: 8px !important;
                margin: 0 !important;
                display: block !important;
                width: 100% !important;
            }
            

            /* 3. DROPDOWN SUB-MENU LOGIC (Default mein hidden) */
            /* Yahan se humne parent .dropdown ka display rule hata diya hai taaki Cross (X) dabaane par poora menu bina tangee ke band ho sake */
            .dropdown-menu,
            .nav-links .dropdown .dropdown-menu {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
            }

            /* 4. CLICK TOGGLE: Sirf 'touch-open' class aane par sub-menu niche khulega */
            .nav-links .dropdown.touch-open .dropdown-menu,
            .dropdown.touch-open .dropdown-menu {
                display: block !important;
                visibility: visible !important;
                opacity: 1 !important;
                position: static !important;
                width: 100% !important;
                box-shadow: none !important;
                padding-left: 20px !important;
                padding-top: 4px !important;
                padding-bottom: 4px !important;
            }

            .dropdown-menu a {
                padding-top: 6px !important;
                padding-bottom: 6px !important;
            }
        }
        
        .consent-box {
      background: #f2f3f6;
      border: 1.5px solid #22e53f;
      border-radius: 10px;
      padding: 16px 18px;
      margin-bottom: 20px;
    }
 
    .consent-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }
 
    .consent-row input[type="checkbox"] {
      width: 18px;
      min-width: 18px;
      height: 18px;
      margin-top: 2px;
      accent-color: #f97316;
      cursor: pointer;
      border-radius: 4px;
    }
 
    .consent-text {
      font-size: 12.5px;
      color: #9ca3af;
      line-height: 1.6;
    }
 
    .consent-text strong {
      color: #f97316;
      font-weight: 700;
    }
 
    .consent-text a {
      color: #f97316;
      text-decoration: underline;
    }
 
    .sms-keywords {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 10px;
    }
 
    .keyword-pill {
      background: #1f2937;
      border: 1px solid #374151;
      border-radius: 20px;
      padding: 3px 11px;
      font-size: 11px;
      color: #d1d5db;
    }
 
    .keyword-pill span {
      color: #f97316;
      font-weight: 700;
    }
  .fine-print {
      text-align: center;
      font-size: 11px;
      color: #6b7280;
      margin-top: 14px;
      line-height: 1.6;
    }
    .fine-print a { color: #f97316; text-decoration: underline; }
