/* ════════════════════════════════════════════════
                   NAVIGATION BAR
                   ════════════════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 76px;
            background: rgba(250, 250, 250,1);
            backdrop-filter: blur(14px) saturate(1.2);
            -webkit-backdrop-filter: blur(14px) saturate(1.2);
            border-bottom: 1px solid rgba(186, 23, 40, 0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2.5rem;
            z-index: 9999;
            transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
        }

        .movetorwanda-body {
            position: relative;
            top:80px;
        }

        /* Shrink on scroll */
        .navbar.scrolled {
            height: 62px;
            background: rgba(255, 255, 255,.89);
            box-shadow: 0 4px 48px rgba(0, 0, 0, 0.6);
        }

        /* ── Brand / Logo ── */
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-brand .brand-icon {
            font-size: 1.4rem;
            color: #ba1728;
            transition: transform 0.3s ease;
        }

        .nav-brand:hover .brand-icon {
            transform: rotate(-6deg) scale(1.05);
        }

        .nav-brand .brand-text {
            font-size: 1.15rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            color: #ffffff;
            text-transform: uppercase;
            transition: font-size 0.3s ease;
        }

        .nav-brand .brand-text .highlight {
            color: #ba1728;
            position: relative;
        }

        .nav-brand .brand-text .highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ba1728;
            border-radius: 2px;
            opacity: 0.5;
        }

        .navbar.scrolled .nav-brand .brand-text {
            font-size: 1rem;
        }

        /* ── Navigation Links ── */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.2rem;
            list-style: none;
            margin: 0 1rem;
            
        }

        .nav-links li a {
            display: block;
            padding: 0.5rem .6rem;
            font-size: 0.65rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(23, 25, 25, 0.9);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            width: 0;
            height: 2.5px;
            background: #ba1728;
            border-radius: 4px;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateX(-50%);
        }

        .nav-links li a:hover {
            color: #000;
            background: rgba(186, 23, 40, 0.08);
        }

        .nav-links li a:hover::after {
            width: 60%;
        }

        .nav-links li a.active {
            color: #000;
        }

        .nav-links li a.active::after {
            width: 60%;
            background: #ba1728;
            box-shadow: 0 0 20px rgba(186, 23, 40, 0.3);
        }

        .nav-links li a.active:hover::after {
            width: 70%;
        }

        /* ── Right Actions ── */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-shrink: 0;
        }

        /* Phone number */
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(26, 26, 26, 0.8);
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            padding: 0.4rem 0.8rem;
            border-radius: 40px;
            border: 1px solid rgba(26, 26, 26, 0.5);
            transition: all 0.3s ease;
        }

        .nav-phone i {
            color: #ba1728;
            font-size: 0.8rem;
        }

        .nav-phone:hover {
            color: #161616;
            border-color: rgba(186, 23, 40, 0.3);
            background: rgba(186, 23, 40, 0.6);
        }

        /* CTA Button */
        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: #ba1728;
            color: #fff;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.6rem 1.6rem;
            border-radius: 60px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 24px rgba(186, 23, 40, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-cta::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            transform: scale(0.8);
        }

        .btn-cta:hover {
            background: #d01f34;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 32px rgba(186, 23, 40, 0.45);
        }

        .btn-cta:hover::after {
            opacity: 1;
            transform: scale(1.2);
        }

        .btn-cta:active {
            transform: translateY(0) scale(0.97);
        }

        .btn-cta i {
            font-size: 0.75rem;
            transition: transform 0.35s ease;
        }

        .btn-cta:hover i {
            transform: translateX(4px);
        }

        /* ── Hamburger (mobile) ── */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 0.4rem;
            border-radius: 8px;
            transition: background 0.3s ease;
            background: transparent;
            border: none;
            outline: none;
        }

        .hamburger:hover {
            background: rgba(186, 23, 40, 0.08);
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: #1a1a1a;
            border-radius: 4px;
            transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform-origin: center;
        }

        .hamburger.open span:nth-child(1) {
            transform: rotate(45deg) translate(5.5px, 5.5px);
        }

        .hamburger.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5.5px, -5.5px);
        }

        /* ── Mobile Menu Overlay ── */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* ── Mobile Menu Panel ── */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 380px;
            height: 100%;
            background: rgba(255,255,255,1);
            box-shadow: -8px 0 60px rgba(117, 117, 117, 0.8);
            z-index: 9999;
            padding: 2rem 2rem 2.5rem;
            display: flex;
            flex-direction: column;
            transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
            border-left: 1px solid rgba(186, 23, 40, 0.15);
        }

        .mobile-menu.open {
            right: 0;
        }

        /* Mobile menu header */
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2.5rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mobile-menu-header .brand {
            font-size: 1rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            color: #fff;
            text-transform: uppercase;
        }

        .mobile-menu-header .brand .highlight {
            color: #ba1728;
        }

        .mobile-menu-header .close-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.4);
            font-size: 1.6rem;
            cursor: pointer;
            padding: 0.2rem 0.6rem;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .mobile-menu-header .close-btn:hover {
            color: #fff;
            background: rgba(186, 23, 40, 0.1);
        }

        /* Mobile nav links */
        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            flex: 1;
        }

        .mobile-nav-links li a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.9rem 1rem;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(23, 25, 25, 0.9);
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links li a i {
            color: #ba1728;
            font-size: 0.9rem;
            width: 1.4rem;
            text-align: center;
        }

        .mobile-nav-links li a:hover,
        .mobile-nav-links li a.active {
            color: rgba(23, 25, 25, 0.9);
            background: rgba(186, 23, 40, 0.08);
        }

        .mobile-nav-links li a.active {
            color: rgba(23, 25, 25, 0.9);
            background: rgba(186, 23, 40, 0.12);
            border-left: 3px solid #ba1728;
        }

        /* Mobile menu footer */
        .mobile-menu-footer {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-menu-footer .btn-cta-mobile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: #ba1728;
            color: #fff;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 0.9rem 1.6rem;
            border-radius: 60px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 24px rgba(186, 23, 40, 0.3);
        }

        .mobile-menu-footer .btn-cta-mobile:hover {
            background: #d01f34;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(186, 23, 40, 0.4);
        }

        .mobile-menu-footer .btn-cta-mobile i {
            transition: transform 0.3s ease;
        }

        .mobile-menu-footer .btn-cta-mobile:hover i {
            transform: translateX(4px);
        }

        .mobile-menu-footer .mobile-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            color: rgba(23, 25, 25, 0.9);
            font-size: 0.9rem;
            font-weight: 500;
            text-decoration: none;
            padding: 0.6rem;
            border-radius: 40px;
            border: 1px solid rgba(23, 25, 25, 0.9);
            transition: all 0.3s ease;
        }

        .mobile-menu-footer .mobile-phone i {
            color: #ba1728;
        }

        .mobile-menu-footer .mobile-phone:hover {
            color: #ba1728;
            border-color: rgba(186, 23, 40, 0.3);
        }

        /* ── Responsive ── */

        /* Tablet / small desktop */
        @media (max-width: 1100px) {
            .navbar {
                padding: 0 1.8rem;
            }
            .nav-links li a {
                font-size: 0.72rem;
                padding: 0.4rem 0.7rem;
            }
            .btn-cta {
                font-size: 0.7rem;
                padding: 0.5rem 1.2rem;
            }
            .nav-phone {
                font-size: 0.75rem;
                padding: 0.3rem 0.6rem;
            }
        }

        /* Mobile breakpoint */
        @media (max-width: 820px) {
            .nav-links {
                display: none;
            }

            .nav-phone {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .navbar {
                padding: 0 1.2rem;
                height: 68px;
            }

            .navbar.scrolled {
                height: 58px;
            }

            .nav-brand .brand-text {
                font-size: 0.95rem;
            }

            .navbar.scrolled .nav-brand .brand-text {
                font-size: 0.85rem;
            }

            .btn-cta {
                font-size: 0.7rem;
                padding: 0.5rem 1.2rem;
            }

            .btn-cta .cta-label {
                display: none;
            }

            .btn-cta i {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0 1rem;
                height: 62px;
            }

            .navbar.scrolled {
                height: 54px;
            }

            .nav-brand .brand-text {
                font-size: 0.8rem;
            }

            .navbar.scrolled .nav-brand .brand-text {
                font-size: 0.75rem;
            }

            .nav-brand .brand-icon {
                font-size: 1.1rem;
            }

            .btn-cta {
                padding: 0.4rem 1rem;
                font-size: 0.65rem;
            }

            .mobile-menu {
                width: 92%;
                max-width: 340px;
                padding: 1.5rem 1.2rem 2rem;
            }

            .mobile-nav-links li a {
                font-size: 0.9rem;
                padding: 0.75rem 0.8rem;
            }
        }

        /* ── Scroll indicator (optional) ── */
        .scroll-indicator {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: rgba(186, 23, 40, 0.15);
            backdrop-filter: blur(8px);
            padding: 0.6rem 1rem;
            border-radius: 40px;
            border: 1px solid rgba(186, 23, 40, 0.2);
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.04em;
            pointer-events: none;
            z-index: 100;
            transition: opacity 0.6s ease;
        }

        .scroll-indicator.hidden {
            opacity: 0;
        }

        .scroll-indicator i {
            color: #ba1728;
            margin-right: 0.4rem;
        }