:root {
            --primary-blue: #256f9e;
            --dark-blue: #1a2d45;
            --darker-bg: #0c1218;
            --light-gray: #eef3f7;
            --soft-gray: #f4f7fa;
            --white: #ffffff;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --border-color: #e2e8f0;
            --container-width: 1200px;
            --accent-blue: #5b9fd4;
            --tc-blue: #256f9e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.5;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 48px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 13px 26px;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            white-space: nowrap;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .btn-primary:hover { background-color: #27577d; }

        .btn-white {
            background-color: var(--white);
            color: var(--text-dark);
        }

        .btn-white:hover { background-color: #f9fafb; }

        h1, h2, h3, h4 {
            color: var(--text-dark);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-tag {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--primary-blue);
            margin-bottom: 10px;
            display: block;
        }

        h2 {
            font-size: 40px;
            margin-bottom: 16px;
            line-height: 1.12;
        }
        
        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 16px;
            max-width: 520px;
            line-height: 1.65;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background-color: #ffffff;
            border-bottom: none;
            padding: 14px 0;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            max-width: 1240px;
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            line-height: 1;
        }

        .logo img {
            height: 44px;
            width: auto;
            display: block;
        }

        .contact-info {
            display: flex;
            gap: 28px;
            align-items: center;
            flex: 1;
            justify-content: center;
            min-width: 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .contact-item .icon-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #1e4a6e;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .contact-item .icon-circle .fa-phone {
            font-size: 13px;
        }

        .contact-item .icon-circle .fa-envelope {
            font-size: 14px;
        }

        .contact-item .icon-circle .fa-facebook-f {
            font-size: 16px;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            line-height: 1.1;
        }

        .contact-text span {
            display: block;
            font-weight: 700;
            color: #1a365d;
            font-size: 14px;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .contact-text small {
            color: #5ebcee;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
            display: block;
            margin-bottom: 2px;
            line-height: 1.1;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            flex-shrink: 0;
        }

    

        /* ========== NAV ========== */
        .main-nav {
            background: linear-gradient(180deg, #f0f7fb 0%, #e8f1f7 100%);
            padding: 14px 0;
            border-bottom: none;
            border-top: 1px solid #e2ebf3;
        }

        .main-nav .container {
            overflow-x: auto;
            scrollbar-width: none;
            max-width: 1240px;
        }

        .main-nav .container::-webkit-scrollbar { display: none; }

        .main-nav ul {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            align-items: center;
            flex-wrap: nowrap;
            min-width: max-content;
        }

        .main-nav a {
            font-size: 13px;
            font-weight: 600;
            color: #1d3d58;
            background: #ffffff;
            border: 1px solid #d5e2ec;
            padding: 10px 18px;
            border-radius: 10px;
            display: inline-block;
            white-space: nowrap;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
            transition: all 0.2s;
            letter-spacing: -0.01em;
        }

        .main-nav a:hover {
            border-color: #c0cddb;
            background: #ffffff;
        }

        .main-nav a.active {
            background: #1d3d58;
            color: #ffffff;
            border-color: #1d3d58;
            box-shadow: 0 4px 10px rgba(29, 61, 88, 0.28);
        }

        /* ========== IMAGE CAROUSEL (auto-moving) ========== */
        .image-carousel {
            width: 100%;
            overflow: hidden;
            background-color: #0a0c0f;
            padding: 14px 0;
            position: relative;
        }

        .image-carousel-track {
            display: flex;
            gap: 10px;
            width: max-content;
            animation: carousel-scroll 28s linear infinite;
            will-change: transform;
        }

        .image-carousel:hover .image-carousel-track {
            animation-play-state: paused;
        }

        .image-carousel-track img {
            height: 172px;
            width: 300px;
            flex: 0 0 auto;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        @keyframes carousel-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @media (prefers-reduced-motion: reduce) {
            .image-carousel-track {
                animation: none;
            }
        }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            background:
                linear-gradient(100deg, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0.35) 48%, rgba(8, 12, 18, 0.48) 100%),
                url('/wp-content/uploads/nick065/hero.jpg') center 42%/cover no-repeat;
            color: var(--white);
            padding: 64px 0 0 0;
            min-height: 620px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero .container {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 56px;
            padding-top: 12px;
            padding-bottom: 12px;
            flex: 1;
            width: 100%;
            max-width: var(--container-width);
            box-sizing: border-box;
        }

        .hero-content {
            flex: 1 1 auto;
            max-width: 560px;
            min-width: 0;
            padding-top: 28px;
            display: flex;
            flex-direction: column;
        }

        .hero h1 {
            color: var(--white);
            margin-bottom: 18px;
            font-weight: 800;
            letter-spacing: -0.03em;
            max-width: 520px;
        }

        .hero h1 .hero-brand {
            display: block;
            font-size: 52px;
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.035em;
            margin-bottom: 0;
        }

        .hero h1 .hero-title {
            display: block;
            font-size: 52px;
            line-height: 1.06;
            font-weight: 800;
            letter-spacing: -0.035em;
            max-width: 500px;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 28px;
            color: #ffffff;
            max-width: 460px;
            line-height: 1.5;
            font-weight: 400;
            opacity: 0.95;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: auto;
            padding-top: 8px;
        }

        .hero-buttons .btn {
            padding: 14px 26px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 9999px;
            gap: 8px;
        }

        .hero-buttons .btn-primary {
            background-color: #346c95;
        }

        .hero-buttons .btn-primary:hover {
            background-color: #2c5c80;
        }

        .hero-buttons .btn-primary i {
            font-size: 12px;
        }

        .hero-buttons .btn-white {
            background-color: #ffffff;
            color: #111827;
        }

        .hero-form {
            background: rgba(18, 22, 30, 0.55);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 20px 22px 22px;
            border-radius: 14px;
            width: 340px;
            max-width: 340px;
            flex: 0 0 340px;
            align-self: flex-start;
            box-shadow: none;
            box-sizing: border-box;
        }

        .hero-form h3 {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        .hero-form .tag {
            color: #7eb6e0;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1.4px;
            font-weight: 700;
            display: block;
            margin-bottom: 2px;
        }

        .form-group { margin-bottom: 8px; }
        
        .form-row {
            display: flex;
            gap: 10px;
        }

        .hero-form label {
            display: block;
            font-size: 9px;
            text-transform: uppercase;
            color: #d1d5db;
            margin-bottom: 3px;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .hero-form input, .hero-form select {
            width: 100%;
            padding: 8px 10px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 6px;
            color: var(--white);
            font-size: 13px;
            outline: none;
            height: 36px;
        }

        .hero-form input:focus {
            border-color: rgba(126, 182, 224, 0.55);
        }
        
        .hero-form input::placeholder { color: #8b93a0; }

        .hero-form button {
            width: 100%;
            margin-top: 4px;
            border-radius: 9999px;
            padding: 10px;
            font-size: 14px;
            font-weight: 700;
            background-color: #346c95;
            border: none;
            color: #ffffff;
            height: 40px;
        }

        .hero-form button:hover {
            background-color: #2c5c80;
        }

        .hero-bottom-bar {
            align-self: stretch;
            width: 100%;
            background-color: rgba(8, 12, 18, 0.94);
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 16px 0;
            font-size: 14px;
            color: #e5e7eb;
            margin-top: auto;
        }
        .hero-bottom-bar ul {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        .hero-bottom-bar li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }
            .hero-bottom-bar .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #346c95;
            display: inline-block;
            flex-shrink: 0;
        }

        /* ========== SECTIONS ========== */
        .section-padding { padding: 78px 0; }

        .bg-light { background-color: var(--light-gray); }

        .split-layout {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 56px;
        }

        .split-content {
            flex: 1;
            max-width: 500px;
            min-width: 0;
        }

        .split-media {
            flex: 1;
            min-width: 0;
        }

        .grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .feature-card {
            background-color: #eef2f6;
            padding: 28px 24px;
            border-radius: 14px;
            border: none;
        }

        .feature-card h4 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            margin: 0;
        }

        .lead-text {
            color: var(--text-dark) !important;
            font-weight: 600;
            font-size: 17px !important;
        }

        /* ========== SAFE DELIVERY ========== */
        .safe-delivery {
            background:
                radial-gradient(720px 320px at 8% 0%, rgba(180, 210, 240, 0.38) 0%, rgba(255,255,255,0) 62%),
                #ffffff;
            padding: 88px 0;
        }

        .safe-delivery .split-layout {
            align-items: center;
            gap: 64px;
        }

        .safe-delivery .split-content {
            flex: 1.15;
            max-width: 560px;
        }

        .safe-delivery .split-media {
            flex: 0.95;
        }

        .safe-delivery .section-tag {
            color: #2f6aa3;
            font-size: 12px;
            letter-spacing: 0.16em;
            margin-bottom: 14px;
        }

        .safe-delivery h2 {
            font-size: 42px;
            color: #111827;
            margin-bottom: 18px;
            letter-spacing: -0.03em;
            font-weight: 800;
        }

        .safe-delivery .lead-text {
            color: #1f2937 !important;
            font-weight: 700;
            font-size: 18px !important;
            line-height: 1.55;
            margin-bottom: 18px;
            max-width: 520px;
        }

        .safe-delivery .section-desc {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 16px;
            max-width: 520px;
        }

        .safe-delivery .section-desc:last-child {
            margin-bottom: 0;
        }

        .safe-delivery .grid-2x2 {
            gap: 16px;
        }

        .safe-delivery .feature-card {
            background: #eef3f7;
            border: 1px solid #e1e8ed;
            border-radius: 14px;
            padding: 28px 24px;
            box-shadow: none;
        }

        .safe-delivery .feature-card h4 {
            font-size: 18px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .safe-delivery .feature-card p {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
            line-height: 1.4;
        }

        /* ========== PAYMENT ========== */
        .payments-section {
            background-color: #eef3f7;
            padding: 72px 0 80px;
        }

        .payments-section .section-tag {
            color: #1a2d45;
            font-size: 12px;
            letter-spacing: 0.14em;
            margin-bottom: 12px;
        }

        .payments-section h2 {
            font-size: 42px;
            color: #111827;
            margin-bottom: 12px;
            letter-spacing: -0.03em;
            font-weight: 800;
        }

        .payments-section .section-desc {
            color: #4b5563;
            font-size: 16px;
            max-width: none;
            margin-bottom: 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-top: 36px;
        }

        .payment-card {
            background: #ffffff;
            padding: 32px 28px 28px;
            border-radius: 18px;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            box-shadow: none;
        }

        .icon-box {
            width: 48px;
            height: 48px;
            background-color: #e6edf3;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a2d45;
            font-size: 18px;
        }

        .payments-section .icon-box {
            margin-bottom: 22px;
        }

        .dollar-circle {
            width: 22px;
            height: 22px;
            border: 2px solid #1a2d45;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        .payment-card h4 {
            font-size: 18px;
            font-weight: 800;
            color: #111827;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }

        .payment-card p {
            font-size: 14px;
            color: #6b7280;
            margin: 0;
            line-height: 1.4;
        }

        .tc-bar {
            background-color: #31485c;
            color: white;
            padding: 16px 0;
            font-size: 14px;
            font-weight: 500;
        }

        /* ========== COVERAGE ========== */
        .coverage-section {
            background:
                linear-gradient(rgba(8, 12, 18, 0.68), rgba(8, 12, 18, 0.72)),
                url('/wp-content/uploads/nick065/coverage.jpg') 55% 45% / cover no-repeat;
            color: white;
            min-height: 560px;
            padding: 88px 0 96px;
        }

        .coverage-section h2 {
            color: white;
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0;
            line-height: 1.15;
        }

        .coverage-section .section-tag {
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 44px;
        }

        .dark-card {
            background: rgba(10, 14, 20, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.16);
            padding: 28px 24px 26px;
            border-radius: 14px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .dark-card .icon-box {
            background: rgba(100, 150, 190, 0.28);
            color: #9fd0f0;
            margin-bottom: 22px;
            width: 52px;
            height: 52px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dark-card .icon-box img {
            width: 32px;
            height: 32px;
            object-fit: contain;
            display: block;
            filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg) brightness(1.15);
        }

        .dark-card .icon-box svg {
            width: 24px;
            height: 24px;
            display: block;
        }

        .dark-card h4 {
            color: white;
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .dark-card p {
            color: #ffffff;
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.92;
            margin: 0;
        }

        /* ========== TRADE PLATE ========== */
        .trade-plate {
            background: #ffffff;
            padding: 96px 0;
        }

        .trade-plate .split-layout {
            align-items: center;
            gap: 72px;
        }

        .trade-plate .split-content {
            flex: 0 1 44%;
            max-width: 460px;
        }

        .trade-plate .split-media {
            flex: 1 1 56%;
            min-width: 0;
        }

        .trade-plate .section-tag {
            color: #5a7a9a;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .trade-plate h2 {
            font-size: 42px;
            color: #000000;
            letter-spacing: -0.035em;
            font-weight: 800;
            margin-bottom: 18px;
            line-height: 1.15;
        }

        .trade-plate .section-desc {
            color: #4a4a4a;
            font-size: 16px;
            line-height: 1.7;
            max-width: 420px;
            margin-bottom: 32px;
            font-weight: 400;
        }

        .trade-plate .btn-primary {
            background: linear-gradient(180deg, #4582b4 0%, #1d446d 100%);
            color: #ffffff;
            box-shadow: 0 10px 28px rgba(29, 68, 109, 0.28);
            padding: 15px 28px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 9999px;
        }

        .trade-plate .btn-primary:hover {
            background: linear-gradient(180deg, #3d75a3 0%, #183a5c 100%);
        }

        .trade-plate .rounded-image {
            border-radius: 28px;
            width: 100%;
            height: 360px;
            object-fit: cover;
            object-position: center 50%;
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
            display: block;
        }

        /* ========== CONTACT ========== */
        .quote-section {
            background: #f4f6f8;
            padding: 88px 0;
        }

        .quote-section .split-layout {
            align-items: flex-start;
            gap: 64px;
        }

        .quote-section .split-content {
            max-width: 400px;
            padding-top: 12px;
        }

        .quote-section .split-media {
            flex: 1.25;
        }

        .quote-section .section-tag {
            color: #2f6aa3;
            font-size: 12px;
            letter-spacing: 0.16em;
            margin-bottom: 14px;
        }

        .quote-section h2 {
            font-size: 42px;
            color: #111827;
            letter-spacing: -0.03em;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .quote-section .section-desc {
            color: #4b5563;
            font-size: 16px;
            line-height: 1.7;
            max-width: 360px;
            margin-bottom: 0;
        }

        .contact-form-wrapper {
            background: #ffffff;
            padding: 40px 36px 36px;
            border-radius: 28px;
            box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
        }

        .main-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px 20px;
        }

        .main-form .full-width { grid-column: 1 / -1; }

        .main-form label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a2d45;
        }

        .main-form input,
        .main-form textarea {
            width: 100%;
            padding: 12px 14px;
            background-color: #eef3f7;
            border: 1px solid #e1e8ed;
            border-radius: 10px;
            font-size: 14px;
            color: #111827;
            font-family: inherit;
            outline: none;
        }

        .main-form input::placeholder,
        .main-form textarea::placeholder {
            color: #9aa6b2;
        }

        .main-form input:focus,
        .main-form textarea:focus {
            border-color: #c5d4e0;
            background-color: #f4f7fa;
        }

        .main-form textarea {
            height: 108px;
            resize: vertical;
            min-height: 108px;
        }

        .quote-section .btn-primary {
            background: #2e5a88;
            color: #ffffff;
            box-shadow: 0 10px 20px rgba(30, 58, 90, 0.28);
            padding: 13px 26px;
            font-weight: 700;
            margin-top: 4px;
        }

        .quote-section .btn-primary:hover {
            background: #264e76;
        }

        .contact-details {
            margin-top: 28px;
        }

        .contact-details p {
            font-weight: 800;
            margin-bottom: 8px;
            font-size: 17px;
            color: #111827;
        }

        /* ========== WHY US ========== */
        .why-us {
            background:
                linear-gradient(rgba(12, 18, 28, 0.58), rgba(12, 18, 28, 0.62)),
                url('/wp-content/uploads/nick065/why.jpg') 62% 48% / cover no-repeat;
            color: white;
            min-height: 560px;
            padding: 80px 0;
        }

        .why-us h2 {
            color: white;
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
        }

        .why-us .section-desc {
            color: #ffffff;
            max-width: 520px;
            margin: 0;
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.95;
        }

        .why-us .section-tag {
            color: #8ec4ea;
            letter-spacing: 0.16em;
            margin-bottom: 14px;
        }

        .why-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
        }

        .why-us .btn-white {
            flex-shrink: 0;
            font-weight: 700;
            padding: 13px 26px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .number-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .number-card {
            background: #ffffff;
            padding: 28px 24px 26px;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
            border-left: 4px solid #2f6aa3;
        }

        .number-card .icon-box {
            background: #e8f1f8;
            color: #2f6aa3;
            width: 44px;
            height: 44px;
            border-radius: 10px;
            font-size: 18px;
        }

        .number-card .num {
            position: absolute;
            top: 22px;
            right: 22px;
            font-size: 22px;
            font-weight: 800;
            color: #dbe3ea;
        }

        .number-card h4 {
            font-size: 18px;
            margin: 20px 0 10px 0;
            color: #111827;
            font-weight: 800;
        }

        .number-card p {
            color: #4b5563;
            font-size: 14px;
            margin-bottom: 22px;
            line-height: 1.55;
            min-height: 66px;
        }

        .link-text {
            font-size: 12px;
            font-weight: 800;
            color: #2f6aa3;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ========== CTA ========== */
        .cta-banner {
            background: linear-gradient(90deg, #0c1218 0%, #16324a 52%, #2a5474 100%);
            padding: 52px 0;
            color: white;
        }

        .cta-banner .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .cta-banner h2 {
            margin: 0;
            color: white;
            font-size: 36px;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .cta-banner p {
            margin-top: 10px;
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
            opacity: 0.95;
        }

        .cta-banner .btn-white {
            flex-shrink: 0;
            font-weight: 700;
            padding: 14px 26px;
            color: #111827;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        /* ========== REVIEWS ========== */
        .reviews {
            background-color: #ffffff;
            text-align: left;
            padding: 88px 0;
        }

        .reviews .section-tag {
            color: #8aa8c0;
            letter-spacing: 0.16em;
            margin-bottom: 12px;
        }

        .reviews h2 {
            margin-bottom: 36px;
            text-align: left;
            font-size: 42px;
            color: #111827;
            letter-spacing: -0.03em;
        }

        .review-carousel {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid #d7dee6;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #9aa6b2;
            flex-shrink: 0;
            font-size: 13px;
        }

        .nav-btn:hover {
            border-color: #c5d0da;
            color: #64748b;
        }

        .review-viewport {
            overflow: hidden;
            flex: 1;
            min-width: 0;
        }

        .review-grid {
            display: flex;
            gap: 16px;
            width: 100%;
            transition: transform 0.35s ease;
        }

        .review-card {
            background: #eef3f7;
            padding: 26px 22px 24px;
            border-radius: 16px;
            border: 1px solid #e1e8ed;
            text-align: left;
            flex: 0 0 calc((100% - 48px) / 4);
            max-width: calc((100% - 48px) / 4);
            box-sizing: border-box;
        }

        .stars {
            color: #3b82f6;
            font-size: 12px;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .review-card p {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 22px;
            min-height: 84px;
            line-height: 1.55;
        }

        .review-card h5 {
            font-weight: 800;
            font-size: 14px;
            color: #111827;
        }

        /* ========== FOOTER ========== */
        footer,
        #colophon {
            background-color: #0b0f14;
            color: #ffffff;
            padding: 64px 0 28px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }

        .footer-logo {
            display: inline-block;
            background: #ffffff;
            padding: 8px 12px;
            border-radius: 10px;
            margin-bottom: 18px;
            line-height: 0;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        footer p {
            font-size: 14px;
            max-width: 320px;
            line-height: 1.65;
            color: #ffffff;
        }

        footer h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .footer-links li {
            margin-bottom: 12px;
            font-size: 14px;
            color: #ffffff;
        }

        .footer-pay-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 14px;
            color: #ffffff;
        }

        .footer-pay-item .pay-icon {
            width: 32px;
            height: 32px;
            background: #1a212b;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: #ffffff;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 18px;
            font-size: 13px;
        }

        .footer-bottom p {
            color: #7b8490;
            max-width: none;
            font-size: 13px;
        }

        /* ========== INNER PAGES ========== */
        .page-hero {
            min-height: 520px;
            padding-top: 56px;
        }

        .page-hero .hero-content {
            padding-top: 12px;
        }

        .page-hero h1 .hero-title {
            font-size: 40px;
            max-width: 520px;
        }

        .page-intro {
            background: #ffffff;
            padding: 88px 0;
        }

        .page-intro .section-desc {
            max-width: 640px;
        }

        .work-gallery {
            background: #eef3f7;
            padding: 88px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 36px;
        }

        .gallery-grid img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        .depot-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 36px;
        }

        .depot-card {
            background: #eef3f7;
            border: 1px solid #e1e8ed;
            border-radius: 14px;
            padding: 22px 20px;
        }

        .depot-card h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .depot-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }

        .city-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }

        .city-columns h4 {
            font-size: 16px;
            margin-bottom: 14px;
        }

        .city-columns h4.city-spacer {
            visibility: hidden;
        }

        .city-columns ul li {
            font-size: 14px;
            color: #4b5563;
            margin-bottom: 8px;
            padding-left: 12px;
            position: relative;
        }

        .city-columns ul li::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #346c95;
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* ========== TABLET ========== */
        @media (max-width: 1024px) {
            .container { padding: 0 24px; }
            .hero h1 { font-size: 40px; }
            .hero h1 .hero-brand { font-size: 40px; }
            .hero h1 .hero-title { font-size: 40px; }
            .hero-form {
                flex: 0 0 300px;
                max-width: 300px;
                width: 300px;
                padding: 16px 18px;
            }
            .page-hero { min-height: 0; }
            .page-hero h1 .hero-title { font-size: 32px; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .depot-grid { grid-template-columns: repeat(2, 1fr); }
            .city-columns { grid-template-columns: 1fr 1fr; }
            .city-columns h4.city-spacer { display: none; }
            .coverage-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-info { gap: 14px; }
            .logo img { height: 38px; }
            .header-right-icon { height: 50px; max-width: 240px; }
            .contact-text span { font-size: 12px; }
            .contact-item .icon-circle { width: 34px; height: 34px; }
        }

        /* ========== PRIMARY: 511px TARGET ========== */
        @media (max-width: 600px) {
            .container {
                padding: 0 14px;
                max-width: 100%;
            }

            .top-bar { padding: 8px 0; }
            .top-bar .container { gap: 8px; }

            .logo img { height: 22px; }

            .contact-info { gap: 6px; justify-content: flex-start; }
            .contact-item { gap: 4px; }
            .contact-item .icon-circle {
                width: 16px;
                height: 16px;
                font-size: 7px;
            }
            .contact-text small { font-size: 5px; }
            .contact-text span { font-size: 6.5px; }

            .header-right-icon {
                height: 28px;
                max-width: 130px;
            }

            .main-nav { padding: 6px 0; }
            .main-nav ul { gap: 4px; }
            .main-nav a {
                font-size: 7px;
                padding: 4px 7px;
                border-radius: 4px;
            }

            .image-carousel {
                padding: 5px 0;
            }
            .image-carousel-track {
                gap: 4px;
                animation-duration: 18s;
            }
            .image-carousel-track img {
                height: 62px;
                width: 110px;
                border-radius: 7px;
            }

            .hero { padding: 6px 0 0; min-height: 0; }
            .coverage-section, .why-us { min-height: 0; }
            .hero .container {
                gap: 6px;
                padding-bottom: 4px;
                align-items: flex-start;
                flex: none;
            }
            .hero-content { padding-top: 0; max-width: 54%; }
            .hero h1 {
                margin-bottom: 2px;
                line-height: 1.05;
            }
            .hero h1 .hero-brand {
                font-size: 12px;
                margin-bottom: 0;
            }
            .hero h1 .hero-title {
                font-size: 12px;
                max-width: 100%;
            }
            .hero p {
                font-size: 6px;
                margin-bottom: 5px;
                max-width: 100%;
                line-height: 1.2;
            }
            .hero-buttons { gap: 3px; }
            .hero-buttons .btn {
                font-size: 5.5px;
                padding: 3px 6px;
                gap: 2px;
            }
            .hero-buttons .btn-primary i { font-size: 4px; }

            .hero-form {
                flex: 0 0 42%;
                max-width: 42%;
                width: 42%;
                padding: 4px 5px;
                border-radius: 5px;
            }
            .hero-form .tag { font-size: 3.5px; margin-bottom: 0; letter-spacing: 0.3px; }
            .hero-form h3 { font-size: 7px; margin-bottom: 2px; }
            .form-group { margin-bottom: 1.5px; }
            .form-row { gap: 2px; }
            .hero-form label { font-size: 3.5px; margin-bottom: 0; }
            .hero-form input {
                padding: 1px 3px;
                font-size: 5px;
                border-radius: 2px;
                height: 12px;
                line-height: 1;
            }
            .hero-form button {
                margin-top: 1px;
                padding: 2px;
                font-size: 5px;
                height: 14px;
            }

            .hero-bottom-bar { padding: 3px 0; font-size: 5px; }
            .hero-bottom-bar ul { gap: 7px; }
            .hero-bottom-bar li { gap: 2px; }
            .hero-bottom-bar .dot { width: 4px; height: 4px; }

            .section-tag { font-size: 6px; margin-bottom: 4px; letter-spacing: 0.08em; }
            h2 { font-size: 14px; margin-bottom: 6px; }
            .section-desc { font-size: 7px; margin-bottom: 7px; line-height: 1.4; max-width: 100%; }
            .lead-text { font-size: 7.5px !important; }

            .split-layout { gap: 12px; align-items: center; }
            .split-content { max-width: 48%; }
            .grid-2x2 { gap: 5px; }
            .feature-card { padding: 8px 7px; border-radius: 5px; }
            .feature-card h4 { font-size: 8px; margin-bottom: 1px; }
            .feature-card p { font-size: 6px; }

            .payments-section { padding: 18px 0; }
            .payment-grid { gap: 6px; margin-top: 10px; }
            .payment-card { padding: 8px 7px; border-radius: 6px; }
            .payment-card h4 { font-size: 8px; margin-bottom: 2px; }
            .payment-card p { font-size: 6px !important; }
            .payments-section .icon-box { margin-bottom: 6px; }
            .dollar-circle { width: 10px; height: 10px; border-width: 1px; font-size: 5px; }
            .icon-box {
                width: 18px;
                height: 18px;
                border-radius: 4px;
                font-size: 8px;
            }

            .tc-bar { padding: 6px 0; font-size: 7px; }

            .coverage-grid { grid-template-columns: repeat(4, 1fr); gap: 5px; margin-top: 10px; }
            .dark-card { padding: 8px 6px; border-radius: 6px; }
            .dark-card .icon-box { margin-bottom: 6px; width: 18px; height: 18px; }
            .dark-card .icon-box svg,
            .dark-card .icon-box img { width: 12px; height: 12px; }
            .dark-card h4 { font-size: 8px; margin-bottom: 3px; }
            .dark-card p { font-size: 5.5px; line-height: 1.35; }

            .btn { font-size: 7px; padding: 5px 10px; }
            .rounded-image {
                height: 88px;
                border-radius: 8px;
                box-shadow: 0 6px 12px -4px rgba(0,0,0,0.15);
            }

            .contact-form-wrapper { padding: 10px; border-radius: 8px; }
            .main-form { gap: 6px; }
            .main-form label { font-size: 6px; margin-bottom: 2px; }
            .main-form input, .main-form textarea {
                padding: 4px 5px;
                font-size: 6px;
                border-radius: 3px;
            }
            .main-form textarea { height: 36px; }
            .contact-details { margin-top: 10px; }
            .contact-details p { font-size: 8px; margin-bottom: 2px; }

            .why-header { margin-bottom: 10px; gap: 8px; align-items: center; }
            .number-grid { gap: 5px; }
            .number-card { padding: 8px 7px; border-radius: 6px; }
            .number-card .num { top: 6px; right: 6px; font-size: 9px; }
            .number-card h4 { font-size: 7.5px; margin: 6px 0 3px; }
            .number-card p { font-size: 5.5px; margin-bottom: 6px; line-height: 1.35; min-height: 0; }
            .link-text { font-size: 5px; }

            .cta-banner { padding: 14px 0; }
            .cta-banner h2 { font-size: 12px; }
            .cta-banner p { font-size: 7px; margin-top: 2px; }

            .reviews h2 { margin-bottom: 10px; }
            .review-carousel { gap: 4px; }
            .nav-btn { width: 14px; height: 14px; font-size: 6px; }
            .review-grid { gap: 4px; }
            .review-card { padding: 7px; border-radius: 5px; }
            .stars { font-size: 5px; margin-bottom: 4px; }
            .review-card p { font-size: 5.5px; min-height: 28px; margin-bottom: 6px; line-height: 1.35; }
            .review-card h5 { font-size: 6px; }

            footer { padding: 14px 0 6px; }
            .footer-grid { gap: 8px; margin-bottom: 10px; }
            .footer-logo { padding: 3px 5px; margin-bottom: 4px; border-radius: 3px; }
            .footer-logo img { height: 16px; }
            footer p { font-size: 5.5px !important; max-width: 110px !important; line-height: 1.35; }
            footer h4 { font-size: 7px; margin-bottom: 5px; }
            .footer-links li { font-size: 5.5px; margin-bottom: 2px; }
            .footer-pay-item { font-size: 5.5px; gap: 3px; margin-bottom: 3px; }
            .footer-pay-item .pay-icon { width: 11px; height: 11px; font-size: 5px; border-radius: 2px; }
            .footer-bottom { padding-top: 5px; font-size: 5px; }

            .trade-plate { padding: 18px 0; }
            .trade-plate .split-layout { gap: 12px; }
            .trade-plate .section-desc { margin-bottom: 8px; }
            .section-padding { padding: 20px 0; }
            .reviews { padding: 18px 0 14px; }
            .cta-banner { padding: 14px 0; }
            .why-us { min-height: 0; padding: 18px 0; }

            /* absorb remaining height into lower sections */
            .quote-section { padding: 18px 0; }
            .quote-section .split-layout { gap: 12px; }
            .bg-light.section-padding { padding: 18px 0; }
            .coverage-section { padding: 18px 0; min-height: 0; }

            .page-intro { padding: 18px 0; }
            .work-gallery { padding: 18px 0; }
            .gallery-grid { gap: 5px; margin-top: 10px; }
            .gallery-grid img { height: 52px; border-radius: 6px; }
            .depot-grid { gap: 5px; margin-top: 10px; }
            .depot-card { padding: 8px 7px; border-radius: 6px; }
            .depot-card h4 { font-size: 8px; }
            .depot-card p { font-size: 6px; }
            .city-columns { gap: 8px; margin-top: 10px; grid-template-columns: repeat(3, 1fr); }
            .city-columns h4 { font-size: 8px; margin-bottom: 4px; }
            .city-columns ul li { font-size: 6px; margin-bottom: 2px; }
        }

        @media (max-width: 400px) {
            .top-bar-right { display: none; }
            .contact-info .contact-item:nth-child(3) { display: none; }
        }
