        :root {
            --primary: #1a4b8c;
            --primary-light: #e8f0fe;
            --text: #333;
            --transition: all 0.3s ease;
            --radius: 8px;
        }
/* ============================
   DESKTOP NAV LINKS (horizontal)
============================ */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-menu .nav-link {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.desktop-menu .nav-link:hover {
    color: #0d3a73;
}
/* ============================
   MOBILE NAV LINKS (vertical)
============================ */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    color: #0d3a73;
    transform: translateX(5px);
}
        /* Topbar Styles */
        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
        }

        .top-actions {
            display: flex;
            gap: 12px;
        }

        .btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }

        .btn:hover {
            background: #0d3a73;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 8px 18px;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            width: 160px;
        }

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

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            width: 40px;
            height: 40px;
            justify-content: center;
            align-items: center;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Drawer */
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .mobile-drawer.open {
            right: 0;
            opacity: 1;
            visibility: visible;
        }

        .drawer-content {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-drawer.open .drawer-content {
            transform: translateX(0);
        }

        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
            background: var(--primary-light);
        }

        .drawer-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.25rem;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 30px;
            cursor: pointer;
            color: var(--text);
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .close-btn:hover {
            color: var(--primary);
            transform: scale(1.1);
        }

        .drawer-body {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            overflow-y: auto;
        }

        .mobile-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-actions .btn,
        .mobile-actions .btn-outline {
            width: 100%;
            text-align: center;
            padding: 12px;
        }

        .mobile-address {
            padding: 20px;
            background: var(--primary-light);
            border-radius: var(--radius);
        }

        .mobile-address h4 {
            margin: 0 0 15px;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .mobile-address p {
            margin: 8px 0;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-only {
                display: none !important;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
        }

        @media (min-width: 769px) {
            .mobile-drawer {
                display: none;
            }
        }
