        .navbar {
            background: #1a1a2e;
            padding: 0 20px;
        }

        .navbar-brand img {
            height: 40px;
        }

        .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding: 18px 14px !important;
            font-size: 14px;
        }

        .nav-link:hover {
            color: #f0a500 !important;
        }

        /* ── Level 2 Dropdown ── */
        .dropdown-menu {
            background: #1a1a2e;
            border: none;
            border-top: 2px solid #f0a500;
            border-radius: 0 0 6px 6px;
            min-width: 230px;
            padding: 8px 0;
            margin-top: 0 !important;
        }

        .dropdown-menu .dropdown-item {
            color: #ccc;
            padding: 8px 20px;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-menu .dropdown-item:hover {
            background: rgba(240, 165, 0, 0.1);
            color: #f0a500;
        }

        /* ── Level 3 (nested dropdown) ── */
        .dropdown-submenu {
            position: relative;
        }

        .dropdown-submenu>.dropdown-item::after {
            content: "\F285";
            font-family: "bootstrap-icons";
            margin-left: auto;
            font-size: 11px;
        }

        .dropdown-submenu>.dropdown-menu {
            top: 0;
            left: 100%;
            margin-top: -8px !important;
            border-top: 2px solid #f0a500;
            display: none;
        }

        .submenu-list {
            display: none;
            position: absolute;
            top: 0;
            left: 100%;
            background: #fff;
            border-top: 2px solid #f0a500;
            min-width: 200px;
            padding: 8px 0;
            list-style: none;
        }

        .dropdown-submenu:hover>.submenu-list {
            display: block;
        }

        /* Arrow indicator for has-submenu */
        .has-sub-arrow::after {
            content: "›";
            margin-left: auto;
            padding-left: 10px;
            color: #f0a500;
            font-size: 16px;
            line-height: 1;
        }

        /* ── Top-level dropdown arrow ── */
        .nav-item.dropdown>.nav-link::after {
            display: none;
        }

        /* Header button */
        .btn-get-quote {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 13px;
            white-space: nowrap;
        }

        .btn-get-quote:hover {
            background: #f0a500;
            border-color: #f0a500;
            color: #000;
        }

        /* phone widget */
        .widget-text {
            color: #fff;
            font-size: 13px;
            font-weight: 500;
        }

        .widget-text a {
            color: #fff;
            text-decoration: none;
        }

        .widget-text a:hover {
            color: #f0a500;
        }

        .icon-circle {
            width: 32px;
            height: 32px;
            background: #f0a500;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }