  /* ============================================
           RESET & BASE
        ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3764eb;
            --primary-light: #5a7ff0;
            --primary-dark: #1f4ac7;
            --secondary: #E8721A;
            --secondary-light: #F5A623;
            --accent: #FF6B00;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-600: #64748B;
            --gray-800: #1f4ac7;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            background: var(--white);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ============================================
           HEADER
        ============================================ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: var(--transition);
            background: var(--white);
            box-shadow: var(--shadow-sm);
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
            padding: 0.75rem 0;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-image {
            height: 38px;
            width: auto;
            display: block;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--secondary);
        }

        /* Navigation */
        .nav-list {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-link {
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--secondary);
            color: var(--white) !important;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 114, 26, 0.3);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-800);
            cursor: pointer;
            transition: var(--transition);
            padding: 0.5rem;
        }

        .menu-toggle:hover {
            color: var(--primary);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100%;
            background: var(--white);
            z-index: 1001;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 2rem;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-800);
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-link {
            color: var(--gray-800);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 1rem 0;
            border-bottom: 1px solid var(--gray-100);
            transition: var(--transition);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .mobile-nav-link:hover {
            color: var(--secondary);
            padding-left: 0.5rem;
        }

        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-100);
        }

        .btn-outline-mobile {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem;
            font-size: 1rem;
            font-family: inherit;
            width: 100%;
        }

        .btn-outline-mobile:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-accent-mobile {
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.9rem;
            font-size: 1rem;
            font-family: inherit;
            width: 100%;
        }

        .btn-accent-mobile:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(232, 114, 26, 0.3);
        }

        /* ============================================
           HERO — Map background with white overlay
        ============================================ */
        .hero {
            padding: 120px 0 80px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--white);
            overflow: hidden;
        }

        .hero-map-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" opacity="0.15"%3E%3Cpath fill="%233764eb" d="M400 100 L450 150 L420 200 L380 180 L350 220 L320 180 L280 200 L250 160 L200 180 L180 140 L220 110 L200 70 L250 80 L280 50 L320 70 L350 40 L400 60 L430 40 L470 70 L500 50 L530 80 L580 70 L560 110 L580 140 L540 160 L510 130 L480 150 L450 130 Z"/%3E%3Ccircle cx="400" cy="150" r="8" fill="%233764eb"/%3E%3Ccircle cx="250" cy="120" r="6" fill="%23E8721A"/%3E%3Ccircle cx="550" cy="100" r="6" fill="%23E8721A"/%3E%3Ccircle cx="320" cy="200" r="5" fill="%233764eb"/%3E%3Ccircle cx="480" cy="130" r="5" fill="%233764eb"/%3E%3Cpath d="M250 120 L320 200" stroke="%233764eb" stroke-width="2" stroke-dasharray="4,4"/%3E%3Cpath d="M320 200 L400 150" stroke="%233764eb" stroke-width="2" stroke-dasharray="4,4"/%3E%3Cpath d="M400 150 L480 130" stroke="%233764eb" stroke-width="2" stroke-dasharray="4,4"/%3E%3Cpath d="M480 130 L550 100" stroke="%233764eb" stroke-width="2" stroke-dasharray="4,4"/%3E%3C/svg%3E');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.6;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.85);
            z-index: 2;
        }

        .hero .container {
            position: relative;
            z-index: 3;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(55, 100, 235, 0.08);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-content .badge .dot {
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .hero-title span {
            color: var(--secondary);
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 480px;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-200);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .hero-stat-number .plus {
            color: var(--secondary);
        }

        .hero-stat-label {
            font-size: 0.85rem;
            color: var(--gray-600);
        }

        /* ============================================
           QUOTE FORM — 3-Step Wizard
        ============================================ */
        .quote-form-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
            width: 100%;
            max-width: 520px;
            margin-left: auto;
            position: relative;
            z-index: 4;
        }

        .step-indicators {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.75rem;
            position: relative;
        }

        .step-indicators::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 15%;
            right: 15%;
            height: 2px;
            background: var(--gray-200);
            transform: translateY(-50%);
            z-index: 0;
        }

        .step-indicators .step-progress {
            position: absolute;
            top: 50%;
            left: 15%;
            height: 2px;
            background: var(--secondary);
            transform: translateY(-50%);
            z-index: 1;
            transition: width 0.5s ease;
            width: 0%;
        }

        .step-dot {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            z-index: 2;
            cursor: pointer;
            background: var(--white);
            padding: 0 0.25rem;
        }

        .step-dot .circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gray-200);
            color: var(--gray-600);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: var(--transition);
            border: 2px solid var(--gray-200);
        }

        .step-dot.active .circle {
            background: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
            box-shadow: 0 0 0 4px rgba(232, 114, 26, 0.2);
        }

        .step-dot.completed .circle {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

        .step-dot .label {
            font-size: 0.6rem;
            font-weight: 600;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .step-dot.active .label {
            color: var(--secondary);
        }

        .step-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .step-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-content .step-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.25rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .step-content .step-title i {
            color: var(--secondary);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            margin-bottom: 0.25rem;
        }

        .form-group .input-with-icon {
            position: relative;
            display: flex;
            align-items: center;
        }

        .form-group .input-with-icon i {
            position: absolute;
            left: 1rem;
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        .form-group .input-with-icon input,
        .form-group .input-with-icon select {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.8rem;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--gray-50);
            transition: var(--transition);
            color: var(--gray-800);
        }

        .form-group .input-with-icon input:focus,
        .form-group .input-with-icon select:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(55, 100, 235, 0.1);
        }

        .form-group .input-with-icon input::placeholder {
            color: var(--gray-400);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .stop-row {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .stop-row .form-group {
            flex: 1;
            margin-bottom: 0.75rem;
        }

        .stop-row .btn-icon {
            background: none;
            border: none;
            color: var(--gray-600);
            cursor: pointer;
            font-size: 1.1rem;
            padding: 0.5rem;
            transition: var(--transition);
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1.2rem;
        }

        .stop-row .btn-icon:hover {
            background: var(--gray-100);
            color: var(--secondary);
        }

        .stop-row .btn-icon.remove-stop {
            color: #EF4444;
        }

        .stop-row .btn-icon.remove-stop:hover {
            background: #FEE2E2;
        }

        .add-stop-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            font-family: inherit;
        }

        .add-stop-btn:hover {
            color: var(--secondary);
        }

        .step-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray-200);
        }

        .btn-step {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: var(--radius);
            font-family: inherit;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-step:hover {
            transform: translateY(-2px);
        }

        .btn-prev {
            background: var(--gray-100);
            color: var(--gray-600);
        }

        .btn-prev:hover {
            background: var(--gray-200);
        }

        .btn-next {
            background: var(--primary);
            color: var(--white);
        }

        .btn-next:hover {
            background: var(--primary-dark);
            box-shadow: 0 4px 16px rgba(55, 100, 235, 0.3);
        }

        .btn-submit {
            background: var(--secondary);
            color: var(--white);
            padding: 0.75rem 2rem;
            border: none;
            border-radius: var(--radius);
            font-family: inherit;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-submit:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 114, 26, 0.35);
        }

        /* ============================================
           PAGE HEADER (for inner pages)
        ============================================ */
        .page-header {
            padding: 140px 0 60px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .page-header p {
            color: var(--gray-600);
            font-size: 1.1rem;
            max-width: 600px;
        }

        /* ============================================
           SERVICES PAGE
        ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 60px 0;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .service-card .icon {
            width: 64px;
            height: 64px;
            background: rgba(55, 100, 235, 0.08);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.25rem;
            color: var(--secondary);
            font-size: 1.8rem;
        }

        .service-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .service-card p {
            color: var(--gray-600);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ============================================
           ABOUT PAGE
        ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 60px 0;
            align-items: center;
        }

        .about-content h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .about-features {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 500;
            color: var(--gray-800);
        }

        .about-features li i {
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .about-image {
            background: linear-gradient(135deg, #3764eb, #1f4ac7);
            border-radius: var(--radius-lg);
            padding: 3rem;
            color: var(--white);
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .about-image .big-icon {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 1.5rem;
        }

        .about-image h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .about-image p {
            color: rgba(255, 255, 255, 0.7);
            max-width: 400px;
        }

        /* ============================================
           FLEET PAGE
        ============================================ */
        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            padding: 60px 0;
        }

        .fleet-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            transition: var(--transition);
        }

        .fleet-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .fleet-card .fleet-image {
            height: 200px;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-light);
        }

        .fleet-card .fleet-content {
            padding: 1.5rem;
        }

        .fleet-card .fleet-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .fleet-card .fleet-content p {
            color: var(--gray-600);
            font-size: 0.9rem;
        }

        .fleet-card .fleet-content .specs {
            display: flex;
            gap: 1.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gray-200);
        }

        .fleet-card .fleet-content .specs span {
            font-size: 0.85rem;
            color: var(--gray-600);
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .fleet-card .fleet-content .specs i {
            color: var(--secondary);
        }

        /* ============================================
           ROUTE VEHICLE CARDS (Johannesburg -> Durban)
           Extends .fleet-card to support real vehicle
           photos as background images, no design changes
           to existing rules above.
        ============================================ */
        .route-vehicle-card .fleet-image {
            background-color: var(--gray-100);
            background-repeat: no-repeat;
        }

        .route-vehicle-card .select-vehicle-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }


        /* ============================================
           CONTACT PAGE
        ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 60px 0;
        }

        .contact-info h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--gray-600);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-item .icon {
            width: 44px;
            height: 44px;
            background: var(--secondary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-item .text h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
        }

        .contact-item .text p {
            font-size: 0.95rem;
            color: var(--gray-600);
            margin-bottom: 0;
        }

        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
        }

        .contact-form h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius);
            font-family: inherit;
            font-size: 0.95rem;
            background: var(--gray-50);
            transition: var(--transition);
            color: var(--gray-800);
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(55, 100, 235, 0.1);
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-form .btn-submit {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--radius);
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            font-family: inherit;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .contact-form .btn-submit:hover {
            background: var(--secondary-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 114, 26, 0.35);
        }

        /* ============================================
           FOOTER — White logo
        ============================================ */
        .footer {
            background: var(--gray-800);
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
            margin-top: 60px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 0.5rem;
        }

        .footer-brand .logo-image {
            height: 40px;
            width: auto;
            display: block;
            filter: brightness(0) invert(1);
        }

        .footer-brand .logo-text {
            color: var(--white);
            font-size: 1.3rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
            margin-top: 0.5rem;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
            text-decoration: none;
        }

        .footer-social a:hover {
            background: var(--secondary);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer h4 {
            color: var(--white);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 0.25rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-bottom-links a:hover {
            color: var(--secondary);
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero-content {
                text-align: center;
            }

            .hero-subtitle {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-stat {
                text-align: center;
            }

            .quote-form-card {
                max-width: 100%;
                margin: 0 auto;
            }

            .nav-list {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .services-grid,
            .fleet-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .about-image {
                min-height: 250px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .quote-form-card {
                padding: 1.5rem;
            }

            .step-dot .circle {
                width: 34px;
                height: 34px;
                font-size: 0.9rem;
            }

            .step-dot .label {
                font-size: 0.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stop-row {
                flex-wrap: wrap;
            }

            .stop-row .form-group {
                flex: 1 1 100%;
            }

            .stop-row .btn-icon {
                margin-top: 0;
                align-self: flex-start;
            }

            .services-grid,
            .fleet-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-header {
                padding: 120px 0 40px;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .step-nav {
                flex-direction: column;
            }

            .btn-step,
            .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .quote-form-card {
                padding: 1.25rem;
            }

            .form-group .input-with-icon input,
            .form-group .input-with-icon select {
                padding: 0.65rem 1rem 0.65rem 2.5rem;
                font-size: 0.9rem;
            }

            .step-indicators::before {
                left: 10%;
                right: 10%;
            }

            .step-dot .circle {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            .contact-form {
                padding: 1.5rem;
            }

            .logo-image {
                height: 30px;
            }
        }
/* ============================================
   HEADER CONTACT ACTIONS (Call + WhatsApp)
   Added across all 3,660 route pages.
============================================ */
.header-contact-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.header-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.header-call-btn {
    background: var(--gray-100);
    color: var(--primary-dark);
    border: 1px solid var(--gray-200);
}

.header-call-btn:hover {
    background: var(--gray-200);
}

.header-whatsapp-btn {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}

.header-whatsapp-btn:hover {
    background: #1DA851;
}

@media (max-width: 1100px) {
    .header-contact-actions span {
        display: none;
    }
    .header-contact-btn {
        padding: 0.55rem 0.7rem;
    }
}

@media (max-width: 900px) {
    .header-contact-actions {
        display: none; /* shown instead in the mobile menu */
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.4);
}

/* ============================================
   FLOATING "GET QUOTE" BUTTON
============================================ */
.floating-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 96px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.floating-quote-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .floating-quote-btn span {
        display: none;
    }
    .floating-quote-btn {
        padding: 0.9rem;
        right: 92px;
    }
    .floating-whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 18px;
        right: 18px;
    }
    .floating-quote-btn {
        bottom: 18px;
    }
}

/* ============================================
   MODAL OVERLAY (shared by quote modal + service modal)
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding: 5vh 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    width: 100%;
    padding: 2rem;
    position: relative;
    animation: modalPopIn 0.25s ease;
}

.modal-box-large {
    max-width: 640px;
    padding: 1.5rem;
}

@keyframes modalPopIn {
    from { opacity: 0; transform: translateY(16px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--primary-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-right: 1rem;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 0.75rem;
}

.modal-header h2 {
    margin: 0 0 0.4rem;
    color: var(--gray-800);
    font-size: 1.4rem;
}

.modal-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SERVICE CARDS — clickable state
============================================ */
.service-card-clickable {
    cursor: pointer;
    transition: var(--transition);
}

.service-card-clickable:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card-clickable:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
